mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 08:39:17 +00:00
feat: Add Crown Zenith (#416)
This commit is contained in:
72
data/Sword & Shield/Crown Zenith/GG30.ts
Normal file
72
data/Sword & Shield/Crown Zenith/GG30.ts
Normal file
@ -0,0 +1,72 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Crown Zenith"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Pikachu",
|
||||
fr: "Pikachu",
|
||||
es: "Pikachu",
|
||||
it: "Pikachu",
|
||||
pt: "Pikachu",
|
||||
de: "Pikachu"
|
||||
},
|
||||
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Lightning"],
|
||||
stage: "Basic",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
en: "Pika Dash",
|
||||
fr: "Pika Ruée",
|
||||
es: "Pika Carrera",
|
||||
it: "Pikascatto",
|
||||
pt: "Arremetida Pikachu",
|
||||
de: "Pikaspurt"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "If this Pokémon has any Energy attached, it has no Retreat Cost.",
|
||||
fr: "Si de l'Énergie est attachée à ce Pokémon, il n'a pas de Coût de Retraite.",
|
||||
es: "Si este Pokémon tiene alguna Energía unida a él, no tiene ningún Coste de Retirada.",
|
||||
it: "Se questo Pokémon ha delle Energie assegnate, non ha costo di ritirata.",
|
||||
pt: "Se este Pokémon tiver alguma Energia ligada a ele, não terá custo de Recuo.",
|
||||
de: "Wenn an dieses Pokémon mindestens 1 Energie angelegt ist, hat es keine Rückzugskosten."
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
cost: ["Lightning", "Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Whimsy Tackle",
|
||||
fr: "Charge Bizarre",
|
||||
es: "Placaje Caprichoso",
|
||||
it: "Capriccioazione",
|
||||
pt: "Investida Fantástica",
|
||||
de: "Launischer Tackle"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Flip a coin. If tails, this attack does nothing.",
|
||||
fr: "Lancez une pièce. Si c'est pile, cette attaque ne fait rien.",
|
||||
es: "Lanza 1 moneda. Si sale cruz, este ataque no hace nada.",
|
||||
it: "Lancia una moneta. Se esce croce, questo attacco non ha effetto.",
|
||||
pt: "Jogue 1 moeda. Se sair coroa, este ataque não fará nada.",
|
||||
de: "Wirf 1 Münze. Bei Zahl hat diese Attacke keine Auswirkungen."
|
||||
},
|
||||
|
||||
damage: 50
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user