mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-28 13:52:13 +00:00
87 lines
2.0 KiB
TypeScript
87 lines
2.0 KiB
TypeScript
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",
|
|
variants: {
|
|
"normal": true,
|
|
"reverse": true,
|
|
"holo": false
|
|
}
|
|
}
|
|
|
|
export default card |