mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-15 00:49:18 +00:00
feat: Add Scarlet & violet three first sets (#446)
Some checks failed
Build / build (push) Failing after 59s
Some checks failed
Build / build (push) Failing after 59s
This commit is contained in:
61
data/Scarlet & Violet/Paldea Evolved/035.ts
Normal file
61
data/Scarlet & Violet/Paldea Evolved/035.ts
Normal file
@ -0,0 +1,61 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paldea Evolved"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
fr: "Chochodile",
|
||||
en: "Fuecoco",
|
||||
es: "Fuecoco",
|
||||
it: "Fuecoco",
|
||||
pt: "Fuecoco",
|
||||
de: "Krokel"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 90,
|
||||
types: ["Fire"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
fr: "Trou d'Mémoire",
|
||||
en: "Spacing Out",
|
||||
es: "En las Nubes",
|
||||
it: "Vuoto Mentale",
|
||||
pt: "Sonhando Acordado",
|
||||
de: "Dahindöser"
|
||||
},
|
||||
|
||||
effect: {
|
||||
fr: "Lancez une pièce. Si c'est face, soignez 30 dégâts de ce Pokémon.",
|
||||
en: "Flip a coin. If heads, heal 30 damage from this Pokémon.",
|
||||
es: "Lanza 1 moneda. Si sale cara, cura 30 puntos de daño a este Pokémon.",
|
||||
it: "Lancia una moneta. Se esce testa, cura questo Pokémon da 30 danni.",
|
||||
pt: "Jogue uma moeda. Se sair cara, cure 30 pontos de dano deste Pokémon.",
|
||||
de: "Wirf 1 Münze. Heile bei Kopf 30 Schadenspunkte bei diesem Pokémon."
|
||||
}
|
||||
}, {
|
||||
cost: ["Fire", "Colorless"],
|
||||
|
||||
name: {
|
||||
fr: "Flamboiement",
|
||||
en: "Flare",
|
||||
es: "Llama",
|
||||
it: "Fiammata",
|
||||
pt: "Chama",
|
||||
de: "Flackern"
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user