mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 00:29:19 +00:00
feat: Add Crown Zenith (#416)
This commit is contained in:
63
data/Sword & Shield/Crown Zenith/021.ts
Normal file
63
data/Sword & Shield/Crown Zenith/021.ts
Normal file
@ -0,0 +1,63 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Crown Zenith"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Entei",
|
||||
fr: "Entei",
|
||||
es: "Entei",
|
||||
it: "Entei",
|
||||
pt: "Entei",
|
||||
de: "Entei"
|
||||
},
|
||||
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
hp: 120,
|
||||
types: ["Fire"],
|
||||
stage: "Basic",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
en: "Explosive Heat Dash",
|
||||
fr: "Ruée Chaleur Explosive",
|
||||
es: "Carga Ardiente Explosiva",
|
||||
it: "Rogoscatto Esplosivo",
|
||||
pt: "Arremetida de Calor Explosiva",
|
||||
de: "Explosiver Hitzespurt"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "If this Pokémon has any Fire Energy attached, it has no Retreat Cost.",
|
||||
fr: "Si au moins une Énergie Fire est attachée à ce Pokémon, il n'a pas de Coût de Retraite.",
|
||||
es: "Si este Pokémon tiene alguna Energía Fire unida a él, no tiene ningún Coste de Retirada.",
|
||||
it: "Se questo Pokémon ha delle Energie Fire assegnate, non ha costo di ritirata.",
|
||||
pt: "Se este Pokémon tiver alguma Energia Fire ligada a ele, não terá custo de Recuo.",
|
||||
de: "Wenn an dieses Pokémon mindestens 1 Fire-Energie angelegt ist, hat es keine Rückzugskosten."
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless", "Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Claw Slash",
|
||||
fr: "Tranch'Griffe",
|
||||
es: "Cuchillada Garra",
|
||||
it: "Lacerartiglio",
|
||||
pt: "Golpe de Garra",
|
||||
de: "Klauenschlitzer"
|
||||
},
|
||||
|
||||
damage: 90
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user