1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
TCGdex [Bot] ab265c6c41
editor: misc fixes for variants (#517)
Co-authored-by: Avior <git@avior.me>
2024-07-03 22:44:31 +02:00

57 lines
914 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Celebrations'
const card: Card = {
dexId: [145],
set: Set,
name: {
en: "Rocket's Zapdos"
},
illustrator: "Shin-ichi Yoshida",
rarity: "Classic Collection",
category: "Pokemon",
hp: 70,
types: ["Lightning"],
stage: "Basic",
attacks: [{
name: {
en: "Plasma"
},
effect: {
en: "If there are any Lightning Energy cards in your discard pile, attach 1 of them to Rocket's Zapdos."
},
damage: 20,
cost: ["Lightning"]
}, {
name: {
en: "Electroburn"
},
effect: {
en: "Rocket's Zapdos does damage to itself equal to 10 times the number of Lightning Energy cards attached to it."
},
damage: 70,
cost: ["Lightning", "Lightning", "Lightning", "Colorless"]
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 2,
variants: {
normal: false,
reverse: false
}
}
export default card