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:
46
data/Pokémon TCG Pocket/Promos-A/025.ts
Normal file
46
data/Pokémon TCG Pocket/Promos-A/025.ts
Normal 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
|
Reference in New Issue
Block a user