mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-16 09:29:19 +00:00
feat: Add Stellar Crown (#533)
This commit is contained in:
63
data/Scarlet & Violet/Stellar Crown/154.ts
Normal file
63
data/Scarlet & Violet/Stellar Crown/154.ts
Normal file
@ -0,0 +1,63 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Stellar Crown"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Gulpin",
|
||||
fr: "Gloupti",
|
||||
es: "Gulpin",
|
||||
it: "Gulpin",
|
||||
pt: "Gulpin",
|
||||
de: "Schluppuck"
|
||||
},
|
||||
|
||||
rarity: "Illustration rare",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Darkness"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Darkness"],
|
||||
|
||||
name: {
|
||||
en: "Drool",
|
||||
fr: "Gluant",
|
||||
es: "Babeo",
|
||||
it: "Sbavare",
|
||||
pt: "Babar",
|
||||
de: "Sabbern"
|
||||
},
|
||||
|
||||
damage: 10
|
||||
}, {
|
||||
cost: ["Darkness", "Darkness", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Super Poison Breath",
|
||||
fr: "Super Haleine Empoisonnée",
|
||||
es: "Aliento Supervenenoso",
|
||||
it: "Super Velenospiro",
|
||||
pt: "Super-hálito Venenoso",
|
||||
de: "Super-Gifthauch"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Your opponent's Active Pokémon is now Poisoned.",
|
||||
fr: "Le Pokémon Actif de votre adversaire est maintenant Empoisonné.",
|
||||
es: "El Pokémon Activo de tu rival pasa a estar Envenenado.",
|
||||
it: "Il Pokémon attivo del tuo avversario viene avvelenato.",
|
||||
pt: "O Pokémon Ativo do seu oponente agora está Envenenado.",
|
||||
de: "Das Aktive Pokémon deines Gegners ist jetzt vergiftet."
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user