mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-15 00:49:18 +00:00
82
data/Sword & Shield/Pokémon GO/044.ts
Normal file
82
data/Sword & Shield/Pokémon GO/044.ts
Normal file
@ -0,0 +1,82 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Pokémon GO"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Steelix",
|
||||
fr: "Steelix",
|
||||
es: "Steelix",
|
||||
it: "Steelix",
|
||||
pt: "Steelix",
|
||||
de: "Stahlos"
|
||||
},
|
||||
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
hp: 180,
|
||||
types: ["Metal"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Onix",
|
||||
fr: "Onix",
|
||||
es: "Onix",
|
||||
it: "Onix",
|
||||
pt: "Onix",
|
||||
de: "Onix"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless", "Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Body Slam",
|
||||
fr: "Plaquage",
|
||||
es: "Golpe Cuerpo",
|
||||
it: "Corposcontro",
|
||||
pt: "Pancada Corporal",
|
||||
de: "Bodyslam"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, your opponent's Active Pokémon is now Paralyzed.",
|
||||
fr: "Lancez une pièce. Si c'est face, le Pokémon Actif de votre adversaire est maintenant Paralysé.",
|
||||
es: "Lanza 1 moneda. Si sale cara, el Pokémon Activo de tu rival pasa a estar Paralizado.",
|
||||
it: "Lancia una moneta. Se esce testa, il Pokémon attivo del tuo avversario viene paralizzato.",
|
||||
pt: "Jogue 1 moeda. Se sair cara, o Pokémon Ativo do seu oponente ficará Paralisado.",
|
||||
de: "Wirf 1 Münze. Bei Kopf ist das Aktive Pokémon deines Gegners jetzt paralysiert."
|
||||
},
|
||||
|
||||
damage: 70
|
||||
}, {
|
||||
cost: ["Metal", "Colorless", "Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Iron Buster",
|
||||
fr: "Buster de Fer",
|
||||
es: "Destructor Férreo",
|
||||
it: "Ferro Distruttivo",
|
||||
pt: "Destruidor Férreo",
|
||||
de: "Eisensprenger"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "During your next turn, this Pokémon can't attack.",
|
||||
fr: "Pendant votre prochain tour, ce Pokémon ne peut pas attaquer.",
|
||||
es: "Durante tu próximo turno, este Pokémon no puede atacar.",
|
||||
it: "Durante il tuo prossimo turno, questo Pokémon non può attaccare.",
|
||||
pt: "Durante o seu próximo turno, este Pokémon não poderá atacar.",
|
||||
de: "Während deines nächsten Zuges kann dieses Pokémon nicht angreifen."
|
||||
},
|
||||
|
||||
damage: 170
|
||||
}],
|
||||
|
||||
retreat: 4,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user