1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-03 12:29:54 +00:00

40 lines
581 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Dhelmise ex"
},
illustrator: "IKEDA Saki",
rarity: "Two Star",
category: "Pokemon",
hp: 140,
types: ["Grass"],
stage: "Basic",
suffix: "EX",
attacks: [{
name: {
en: "Anchor Shot"
},
damage: 80,
cost: ["Grass", "Grass", "Colorless"],
effect: {
en: "During your opponent's next turn, the Defending Pokémon can't retreat."
}
}],
weaknesses: [{
type: "Fire",
value: "+20"
}],
retreat: 2
}
export default card