mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-08-04 05:11:58 +00:00
feat: Add A4 Wisdom of Sea and Sky (#832)
This commit is contained in:
40
data/Pokémon TCG Pocket/Wisdom of Sea and Sky/240.ts
Normal file
40
data/Pokémon TCG Pocket/Wisdom of Sea and Sky/240.ts
Normal file
@@ -0,0 +1,40 @@
|
||||
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: "Crown",
|
||||
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
|
Reference in New Issue
Block a user