mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-21 15:49:55 +00:00
* feat: ADd set datas Signed-off-by: Avior <git@avior.me> * feat: Add cards Signed-off-by: Avior <git@avior.me> --------- Signed-off-by: Avior <git@avior.me>
50 lines
1016 B
TypeScript
50 lines
1016 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../SVP Black Star Promos"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Fuecoco",
|
|
fr: "Chochodile",
|
|
es: "Fuecoco",
|
|
it: "Fuecoco",
|
|
pt: "Fuecoco",
|
|
de: "Krokel"
|
|
},
|
|
|
|
rarity: "None",
|
|
category: "Pokemon",
|
|
hp: 80,
|
|
types: ["Fire"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Fire", "Fire", "Colorless"],
|
|
|
|
name: {
|
|
en: "Super Singe",
|
|
fr: "Super Roussi",
|
|
es: "Superquemadura",
|
|
it: "Super Scottata",
|
|
pt: "Superchamuscada",
|
|
de: "Super-Versengung"
|
|
},
|
|
|
|
effect: {
|
|
en: "Your opponent's Active Pokémon is now Burned.",
|
|
fr: "Le Pokémon Actif de votre adversaire est maintenant Brûlé.",
|
|
es: "El Pokémon Activo de tu rival pasa a estar Quemado.",
|
|
it: "Il Pokémon attivo del tuo avversario viene bruciato.",
|
|
pt: "O Pokémon Ativo do seu oponente agora está Queimado.",
|
|
de: "Das Aktive Pokémon deines Gegners ist jetzt verbrannt."
|
|
},
|
|
|
|
damage: 30
|
|
}],
|
|
|
|
retreat: 2,
|
|
regulationMark: "G"
|
|
}
|
|
|
|
export default card |