mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 20:32:11 +00:00
105 lines
1.6 KiB
TypeScript
105 lines
1.6 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: "np-33",
|
||
localId: 33,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Zapdos ex",
|
||
},
|
||
|
||
hp: 100,
|
||
|
||
type: [
|
||
Type.LIGHTNING,
|
||
],
|
||
|
||
dexId: 145,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/pop/np/33/low.png",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/pop/np/33/high.png",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {},
|
||
|
||
tags: [
|
||
Tag.BASIC,
|
||
],
|
||
|
||
illustrator: {
|
||
id: 173,
|
||
name: "K. Hoshiba"
|
||
},
|
||
|
||
abilities: [{
|
||
id: 1108,
|
||
type: AbilityType.POKEBODY,
|
||
name: {
|
||
en: "Synchronized Lift",
|
||
},
|
||
text: {
|
||
en: "As long as you have Articuno ex and Moltres ex in play, the Retreat Cost for Zapdos ex is 0.",
|
||
}
|
||
}],
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Thunder Gift",
|
||
},
|
||
text: {
|
||
en: "You may move a Lightning Energy card attached to Zapdos ex to 1 of your Pokémon.",
|
||
},
|
||
damage: 10
|
||
},{
|
||
cost: [
|
||
Type.LIGHTNING,
|
||
Type.LIGHTNING,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Lightning Wing",
|
||
},
|
||
text: {
|
||
en: "Does 10 damage to 1 of your Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
|
||
},
|
||
damage: 60
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.LIGHTNING,
|
||
value: "×2"
|
||
}],
|
||
|
||
|
||
|
||
|
||
|
||
rarity: Rarity.Common,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "Nintendo Black Star Promos",
|
||
code: "np"
|
||
}
|
||
}
|
||
|
||
export default card
|
||
|