1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 23:02:09 +00:00
Florian Bouillon 0d2a757cae
base DB
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-02-03 15:18:40 +01:00

97 lines
1.4 KiB
TypeScript

import Card from '../../../interfaces/Card'
import Type from '../../../interfaces/Type'
import Tag from '../../../interfaces/Tag'
import Rarity from '../../../interfaces/Rarity'
import AbilityType from '../../../interfaces/AbilityType'
import Category from '../../../interfaces/Category'
const card: Card = {
// ids
id: "gym2-15",
localId: 15,
// Card informations
name: {
en: "Rocket's Zapdos",
},
hp: 70,
type: [
Type.LIGHTNING,
],
dexId: 145,
image: {
low: {
en: "https://assets.tcgdex.net/en/gym/gym2/15/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/gym/gym2/15/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 119,
name: "Shin-ichi Yoshida"
},
attacks: [{
cost: [
Type.LIGHTNING
],
name: {
en: "Plasma",
},
text: {
en: "If there are any Energy cards in your discard pile, attach 1 of them to Rocket's Zapdos.",
},
damage: 20
},{
cost: [
Type.LIGHTNING,
Type.LIGHTNING,
Type.LIGHTNING,
Type.COLORLESS
],
name: {
en: "Electroburn",
},
text: {
en: "Rocket's Zapdos does damage to itself equal to 10 times the number of Energy cards attached to it.",
},
damage: 70
}],
resistances: [{
type: Type.FIGHTING,
value: "-30"
}],
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Gym Challenge",
code: "gym2"
}
}
export default card