1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-16 09:29:19 +00:00

feat: Add the new Pokémon TCG Pocket promos (#627)

This commit is contained in:
2025-01-01 23:29:50 +01:00
committed by GitHub
parent 60031a9de6
commit f2a7f09e48
33 changed files with 672 additions and 33 deletions

View File

@ -0,0 +1,46 @@
import { Card } from "../../../interfaces"
import Set from "../Promos-A"
const card: Card = {
set: Set,
name: {
en: "Moltres ex"
},
illustrator: "PLANETA Igarashi",
rarity: "Four Diamond",
category: "Pokemon",
hp: 140,
types: ["Fire"],
stage: "Basic",
suffix: "EX",
attacks: [{
name: {
en: "Inferno Dance"
},
cost: ["Fire"],
effect: {
en: "Flip 3 coins. Take an amount of <span class=\"energy-text energy-text--type-fire\"></span> Energy from your Energy Zone equal to the number of heads and attach it to your Benched <span class=\"energy-text energy-text--type-fire\"></span> Pokémon in any way you like."
}
}, {
name: {
en: "Heat Blast"
},
damage: 70,
cost: ["Fire", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "+20"
}],
retreat: 2
}
export default card