mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-08-01 20:32:03 +00:00
feat: Add Crown Zenith (#416)
This commit is contained in:
60
data/Sword & Shield/Crown Zenith/002.ts
Normal file
60
data/Sword & Shield/Crown Zenith/002.ts
Normal file
@@ -0,0 +1,60 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Crown Zenith"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Gloom",
|
||||
fr: "Ortide",
|
||||
es: "Gloom",
|
||||
it: "Gloom",
|
||||
pt: "Gloom",
|
||||
de: "Duflor"
|
||||
},
|
||||
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Grass"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Oddish",
|
||||
fr: "Mystherbe",
|
||||
es: "Oddish",
|
||||
it: "Oddish",
|
||||
pt: "Oddish",
|
||||
de: "Myrapla"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Grass", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Offensive Scent",
|
||||
fr: "Parfum Offensif",
|
||||
es: "Aroma Ofensivo",
|
||||
it: "Aroma Offensivo",
|
||||
pt: "Aroma Ofensivo",
|
||||
de: "Widerlicher Duft"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Your opponent's Active Pokémon is now Confused and Poisoned.",
|
||||
fr: "Le Pokémon Actif de votre adversaire est maintenant Confus et Empoisonné.",
|
||||
es: "El Pokémon Activo de tu rival pasa a estar Confundido y Envenenado.",
|
||||
it: "Il Pokémon attivo del tuo avversario viene confuso e avvelenato.",
|
||||
pt: "O Pokémon Ativo do seu oponente agora está Confuso e Envenenado.",
|
||||
de: "Das Aktive Pokémon deines Gegners ist jetzt verwirrt und vergiftet."
|
||||
},
|
||||
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user