mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-16 17:39:18 +00:00
feat: Add Stellar Crown (#533)
This commit is contained in:
63
data/Scarlet & Violet/Stellar Crown/018.ts
Normal file
63
data/Scarlet & Violet/Stellar Crown/018.ts
Normal file
@ -0,0 +1,63 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Stellar Crown"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Toedscruel",
|
||||
fr: "Terracruel",
|
||||
es: "Toedscruel",
|
||||
it: "Toedscruel",
|
||||
pt: "Toedscruel",
|
||||
de: "Tenterra"
|
||||
},
|
||||
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
hp: 140,
|
||||
types: ["Grass"],
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Grass", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Mega Drain",
|
||||
fr: "Méga-Sangsue",
|
||||
es: "Megaagotar",
|
||||
it: "Megassorbimento",
|
||||
pt: "Megadreno",
|
||||
de: "Megasauger"
|
||||
},
|
||||
|
||||
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: 30
|
||||
}, {
|
||||
cost: ["Grass", "Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Whip Smash",
|
||||
fr: "Frappe Fouet",
|
||||
es: "Golpe Látigo",
|
||||
it: "Frustata Devastante",
|
||||
pt: "Chicote Esmagador",
|
||||
de: "Peitschenschlag"
|
||||
},
|
||||
|
||||
damage: 90
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user