1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-04 05:11:58 +00:00
Files
cards-database/data/Pokémon TCG Pocket/Wisdom of Sea and Sky/034.ts

40 lines
654 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Wisdom of Sea and Sky"
const card: Card = {
set: Set,
name: {
en: "Ho-Oh ex"
},
illustrator: "PLANETA CG Works",
rarity: "Four Diamond",
category: "Pokemon",
hp: 150,
types: ["Fire"],
stage: "Basic",
suffix: "EX",
attacks: [{
name: {
en: "Phoenix Turbo"
},
damage: 80,
cost: ["Colorless", "Colorless", "Colorless"],
effect: {
en: "Take a {R}, {W}, and {L} Energy from your Energy Zone and attach them to your Benched Basic Pokémon in any way you like."
}
}],
weaknesses: [{
type: "Lightning",
value: "+20"
}],
retreat: 2
}
export default card