mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-08-04 05:11:58 +00:00
40 lines
650 B
TypeScript
40 lines
650 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: "Two Star",
|
|
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 |