1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 17:09:19 +00:00

feat: Add Brilliant Stars (#250)

This commit is contained in:
2022-02-25 17:39:00 +01:00
committed by GitHub
parent 7a21171219
commit 7a5000c2f3
224 changed files with 12979 additions and 7 deletions

View File

@ -0,0 +1,61 @@
import { Card } from "../../../interfaces"
import Set from "../Brilliant Stars"
const card: Card = {
set: Set,
name: {
en: "Snorunt",
fr: "Stalgamin",
es: "Snorunt",
it: "Snorunt",
pt: "Snorunt",
de: "Schneppke"
},
rarity: "Common",
category: "Pokemon",
hp: 60,
types: ["Water"],
stage: "Basic",
attacks: [{
cost: ["Water"],
name: {
en: "Ice Breath",
fr: "Haleine de Glace",
es: "Aliento Gélido",
it: "Ghiacciospiro",
pt: "Hálito de Gelo",
de: "Eishauch"
},
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."
}
}, {
cost: ["Water", "Colorless"],
name: {
en: "Icy Snow",
fr: "Verglas",
es: "Nieve Helada",
it: "Geloneve",
pt: "Neve Congelada",
de: "Eisiger Schnee"
},
damage: 20
}],
retreat: 2,
regulationMark: "E"
}
export default card