mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-16 09:29:19 +00:00
feat: Add Brilliant Stars (#250)
This commit is contained in:
73
data/Sword & Shield/Brilliant Stars/002.ts
Normal file
73
data/Sword & Shield/Brilliant Stars/002.ts
Normal file
@ -0,0 +1,73 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Brilliant Stars"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Exeggutor",
|
||||
fr: "Noadkoko",
|
||||
es: "Exeggutor",
|
||||
it: "Exeggutor",
|
||||
pt: "Exeggutor",
|
||||
de: "Kokowei"
|
||||
},
|
||||
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
hp: 140,
|
||||
types: ["Grass"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Exeggcute",
|
||||
fr: "Noeunoeuf",
|
||||
es: "Exeggcute",
|
||||
it: "Exeggcute",
|
||||
pt: "Exeggcute",
|
||||
de: "Owei"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Grass", "Colorless", "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: 70
|
||||
}, {
|
||||
cost: ["Grass", "Colorless", "Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Seed Bomb",
|
||||
fr: "Canon Graine",
|
||||
es: "Bomba Germen",
|
||||
it: "Semebomba",
|
||||
pt: "Bomba de Sementes",
|
||||
de: "Samenbomben"
|
||||
},
|
||||
|
||||
damage: 130
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user