mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 10:52:10 +00:00
* fix: Add SV08 Surging Sparks card variants * fix: Fix validate by adding 'abbreviation' to Set interface
75 lines
1.4 KiB
TypeScript
75 lines
1.4 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Surging Sparks"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Annihilape",
|
|
fr: "Courrousinge",
|
|
es: "Annihilape",
|
|
it: "Annihilape",
|
|
pt: "Annihilape",
|
|
de: "Epitaff"
|
|
},
|
|
|
|
rarity: "Uncommon",
|
|
category: "Pokemon",
|
|
hp: 140,
|
|
types: ["Fighting"],
|
|
stage: "Stage2",
|
|
|
|
attacks: [{
|
|
cost: ["Fighting"],
|
|
|
|
name: {
|
|
en: "Tantrum",
|
|
fr: "Mauvaise Humeur",
|
|
es: "Rabieta",
|
|
it: "Collera",
|
|
pt: "Petulância",
|
|
de: "Rappel"
|
|
},
|
|
|
|
effect: {
|
|
en: "This Pokémon is now Confused.",
|
|
fr: "Ce Pokémon est maintenant Confus.",
|
|
es: "Este Pokémon pasa a estar Confundido.",
|
|
it: "Questo Pokémon viene confuso.",
|
|
pt: "Este Pokémon agora está Confuso.",
|
|
de: "Dieses Pokémon ist jetzt verwirrt."
|
|
},
|
|
|
|
damage: 130
|
|
}, {
|
|
cost: ["Fighting", "Colorless"],
|
|
|
|
name: {
|
|
en: "Destined Fight",
|
|
fr: "Combat du Destin",
|
|
es: "Lucha Predestinada",
|
|
it: "Lotta Predestinata",
|
|
pt: "Luta Predestinada",
|
|
de: "Abgangsgefecht"
|
|
},
|
|
|
|
effect: {
|
|
en: "Both Active Pokémon are Knocked Out.",
|
|
fr: "Les deux Pokémon Actifs sont mis K.O.",
|
|
es: "Ambos Pokémon Activos quedan Fuera de Combate.",
|
|
it: "Entrambi i Pokémon attivi vengono messi KO.",
|
|
pt: "Ambos os Pokémon Ativos são Nocauteados.",
|
|
de: "Beide Aktiven Pokémon werden kampfunfähig."
|
|
}
|
|
}],
|
|
|
|
retreat: 2,
|
|
regulationMark: "H",
|
|
|
|
variants: {
|
|
holo: false
|
|
}
|
|
}
|
|
|
|
export default card
|