mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-30 06:42:10 +00:00
42 lines
1.0 KiB
TypeScript
42 lines
1.0 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Unbroken Bonds'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Welder",
|
||
fr: "Soudeuse",
|
||
es: "Soldadora",
|
||
it: "Saldatrice",
|
||
pt: "Soldadora",
|
||
de: "Schweißer"
|
||
},
|
||
illustrator: "Hitoshi Ariga",
|
||
rarity: "Uncommon",
|
||
category: "Trainer",
|
||
|
||
set: Set,
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
effect: {
|
||
fr: "Attachez jusqu’à 2 cartes Énergie Fire de votre main à l’un de vos Pokémon. Dans ce cas, piochez 3 cartes.",
|
||
en: "Attach up to 2 Fire Energy cards from your hand to 1 of your Pokémon. If you do, draw 3 cards.",
|
||
es: "Une hasta 2 cartas de Energía Fire de tu mano a 1 de tus Pokémon. Si lo haces, roba 3 cartas.",
|
||
it: "Assegna fino a due carte Energia Fire dalla tua mano a uno dei tuoi Pokémon. Se lo fai, pesca tre carte.",
|
||
pt: "Ligue até 2 cartas de Energia Fire da sua mão a 1 dos seus Pokémon. Se fizer isto, compre 3 cartas.",
|
||
de: "Lege bis zu 2 Fire-Energiekarten aus deiner Hand an 1 deiner Pokémon an. Wenn du das machst, ziehe 3 Karten."
|
||
},
|
||
trainerType: "Supporter",
|
||
|
||
}
|
||
|
||
export default card
|