mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 16:39:18 +00:00
feat: Add Crown Zenith (#416)
This commit is contained in:
70
data/Sword & Shield/Crown Zenith/061.ts
Normal file
70
data/Sword & Shield/Crown Zenith/061.ts
Normal file
@ -0,0 +1,70 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Crown Zenith"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Girafarig",
|
||||
fr: "Girafarig",
|
||||
es: "Girafarig",
|
||||
it: "Girafarig",
|
||||
pt: "Girafarig",
|
||||
de: "Girafarig"
|
||||
},
|
||||
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
hp: 90,
|
||||
types: ["Psychic"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Double Draw",
|
||||
fr: "Double Pioche",
|
||||
es: "Roba Doble",
|
||||
it: "Pescata Doppia",
|
||||
pt: "Compra Dupla",
|
||||
de: "Zweifachzug"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Draw 2 cards.",
|
||||
fr: "Piochez 2 cartes.",
|
||||
es: "Roba 2 cartas.",
|
||||
it: "Pesca due carte.",
|
||||
pt: "Compre 2 cartas.",
|
||||
de: "Ziehe 2 Karten."
|
||||
}
|
||||
}, {
|
||||
cost: ["Psychic", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Psybeam",
|
||||
fr: "Rafale Psy",
|
||||
es: "Psicorrayo",
|
||||
it: "Psicoraggio",
|
||||
pt: "Feixe Psíquico",
|
||||
de: "Psystrahl"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Your opponent's Active Pokémon is now Confused.",
|
||||
fr: "Le Pokémon Actif de votre adversaire est maintenant Confus.",
|
||||
es: "El Pokémon Activo de tu rival pasa a estar Confundido.",
|
||||
it: "Il Pokémon attivo del tuo avversario viene confuso.",
|
||||
pt: "O Pokémon Ativo do seu oponente agora está Confuso.",
|
||||
de: "Das Aktive Pokémon deines Gegners ist jetzt verwirrt."
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user