1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00
Florian Bouillon 2e18aa4aac
Sword & Shield Fixes (#84)
* some fixes

Signed-off-by: Avior <github@avior.me>

* Some more changes

Signed-off-by: Avior <github@avior.me>

* u

Signed-off-by: Avior <github@avior.me>

* continuing update

Signed-off-by: Avior <github@avior.me>

* Finished ?

Signed-off-by: Avior <github@avior.me>

* Removed files that were not meant to be

* Remoed even more files
2021-10-26 10:40:03 +02:00

51 lines
833 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Celebrations'
const card: Card = {
set: Set,
name: {
en: "Rocket's 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 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
}
export default card