1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-01 20:09:55 +00:00
Khaleeq Ahmad 98bc4db193
Fix: Celestial Guardians corrections (#725)
Co-authored-by: Khaleeq Ahmad <1710642+khaleeqahmad@users.noreply.github.com>
2025-05-03 22:42:16 +00:00

46 lines
598 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Exeggutor ex"
},
illustrator: "PLANETA CG Works",
rarity: "Two Shiny",
category: "Pokemon",
hp: 160,
types: ["Grass"],
evolveFrom: {
en: "Exeggcute"
},
stage: "Stage1",
suffix: "EX",
attacks: [{
name: {
en: "Tropical Swing"
},
damage: "40+",
cost: ["Grass"],
effect: {
en: "Flip a coin. If heads, this attack does 40 more damage."
}
}],
weaknesses: [{
type: "Fire",
value: "+20"
}],
retreat: 3
}
export default card