mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-20 19:19: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:
63
data/Scarlet & Violet/Obsidian Flames/054.ts
Normal file
63
data/Scarlet & Violet/Obsidian Flames/054.ts
Normal file
@ -0,0 +1,63 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Obsidian Flames"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
fr: "Polagriffe",
|
||||
en: "Beartic",
|
||||
es: "Beartic",
|
||||
it: "Beartic",
|
||||
pt: "Beartic",
|
||||
de: "Siberio"
|
||||
},
|
||||
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
hp: 150,
|
||||
types: ["Water"],
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Water"],
|
||||
|
||||
name: {
|
||||
fr: "Poing Stalactite",
|
||||
en: "Icicle Punch",
|
||||
es: "Puñetazo Gélido",
|
||||
it: "Freddopugno",
|
||||
pt: "Soco de Icelo",
|
||||
de: "Eiswatsche"
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}, {
|
||||
cost: ["Water", "Water", "Colorless"],
|
||||
|
||||
name: {
|
||||
fr: "Nettoyage Givré",
|
||||
en: "Frost Purge",
|
||||
es: "Purga Helada",
|
||||
it: "Gelorimozione",
|
||||
pt: "Expurgação Congelada",
|
||||
de: "Eislöschung"
|
||||
},
|
||||
|
||||
effect: {
|
||||
fr: "Lancez une pièce. Si c'est pile, défaussez toutes les Énergies de ce Pokémon.",
|
||||
en: "Flip a coin. If tails, discard all Energy from this Pokémon.",
|
||||
es: "Lanza 1 moneda. Si sale cruz, descarta todas las Energías de este Pokémon.",
|
||||
it: "Lancia una moneta. Se esce croce, scarta tutte le Energie da questo Pokémon.",
|
||||
pt: "Jogue uma moeda. Se sair coroa, descarte todas as Energias deste Pokémon.",
|
||||
de: "Wirf 1 Münze. Lege bei Zahl alle Energien von diesem Pokémon auf deinen Ablagestapel."
|
||||
},
|
||||
|
||||
damage: 170
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user