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:
54
data/Sword & Shield/Crown Zenith/GG31.ts
Normal file
54
data/Sword & Shield/Crown Zenith/GG31.ts
Normal file
@ -0,0 +1,54 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Crown Zenith"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Turtwig",
|
||||
fr: "Tortipouss",
|
||||
es: "Turtwig",
|
||||
it: "Turtwig",
|
||||
pt: "Turtwig",
|
||||
de: "Chelast"
|
||||
},
|
||||
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
hp: 80,
|
||||
types: ["Grass"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Grass"],
|
||||
|
||||
name: {
|
||||
en: "Bite",
|
||||
fr: "Morsure",
|
||||
es: "Mordisco",
|
||||
it: "Morso",
|
||||
pt: "Mordida",
|
||||
de: "Biss"
|
||||
},
|
||||
|
||||
damage: 10
|
||||
}, {
|
||||
cost: ["Grass", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Headbutt Bounce",
|
||||
fr: "Culbute Surprise",
|
||||
es: "Bote Cabezazo",
|
||||
it: "Rimbalzo Bottintesta",
|
||||
pt: "Cabeçada Ricochete",
|
||||
de: "Abrupter Kopfstoß"
|
||||
},
|
||||
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user