1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-06 17:27:52 +00:00
Florian Bouillon 146aad93fa
Added Celebrations (#86)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-10-09 22:48:54 +00:00

50 lines
838 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Celebrations'
const card: Card = {
set: Set,
name: {
en: "Rockets Zapdos"
},
illustrator: "Shin-ichi Yoshida",
rarity: "None",
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 Rockets Zapdos."
},
damage: 20,
cost: ["Lightning"]
}, {
name: {
en: "Electroburn"
},
effect: {
en: "Rockets 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
}
export default card