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:
73
data/Sword & Shield/Crown Zenith/005.ts
Normal file
73
data/Sword & Shield/Crown Zenith/005.ts
Normal file
@ -0,0 +1,73 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Crown Zenith"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Tangrowth",
|
||||
fr: "Bouldeneu",
|
||||
es: "Tangrowth",
|
||||
it: "Tangrowth",
|
||||
pt: "Tangrowth",
|
||||
de: "Tangoloss"
|
||||
},
|
||||
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
hp: 150,
|
||||
types: ["Grass"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Tangela",
|
||||
fr: "Saquedeneu",
|
||||
es: "Tangela",
|
||||
it: "Tangela",
|
||||
pt: "Tangela",
|
||||
de: "Tangela"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Grass", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Suctioning Vines",
|
||||
fr: "Lianes Sangsues",
|
||||
es: "Lianas Succionadoras",
|
||||
it: "Liane Aspiranti",
|
||||
pt: "Vinhas de Sucção",
|
||||
de: "Saugranken"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Heal 30 damage from this Pokémon.",
|
||||
fr: "Soignez 30 dégâts de ce Pokémon.",
|
||||
es: "Cura 30 puntos de daño a este Pokémon.",
|
||||
it: "Cura questo Pokémon da 30 danni.",
|
||||
pt: "Cure 30 pontos de dano deste Pokémon.",
|
||||
de: "Heile 30 Schadenspunkte bei diesem Pokémon."
|
||||
},
|
||||
|
||||
damage: 50
|
||||
}, {
|
||||
cost: ["Grass", "Grass", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Hammer In",
|
||||
fr: "Enfoncement",
|
||||
es: "Martillear",
|
||||
it: "Martello",
|
||||
pt: "Martelada",
|
||||
de: "Einhämmern"
|
||||
},
|
||||
|
||||
damage: 130
|
||||
}],
|
||||
|
||||
retreat: 4,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user