mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-05 08:57:49 +00:00
83 lines
1.1 KiB
TypeScript
83 lines
1.1 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: "xyp-XY134",
|
|
localId: "XY134",
|
|
|
|
// Card informations
|
|
name: {
|
|
en: "Empoleon BREAK",
|
|
},
|
|
|
|
hp: 170,
|
|
|
|
type: [
|
|
Type.WATER,
|
|
],
|
|
|
|
dexId: 395,
|
|
|
|
image: {
|
|
low: {
|
|
en: "https://assets.tcgdex.net/en/xy/xyp/XY134/low.png",
|
|
},
|
|
high: {
|
|
en: "https://assets.tcgdex.net/en/xy/xyp/XY134/high.png",
|
|
},
|
|
},
|
|
|
|
evolveFrom: {
|
|
en: "Empoleon",
|
|
},
|
|
|
|
tags: [
|
|
Tag.BREAK,
|
|
],
|
|
|
|
illustrator: {
|
|
id: 4,
|
|
name: "5ban Graphics"
|
|
},
|
|
|
|
|
|
|
|
attacks: [{
|
|
cost: [
|
|
Type.WATER,
|
|
Type.COLORLESS
|
|
],
|
|
name: {
|
|
en: "Emperor's Command",
|
|
},
|
|
text: {
|
|
en: "This attack does 30 damage times the number of Pokémon your opponent has in play.",
|
|
},
|
|
damage: 30
|
|
}],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
rarity: Rarity.Common,
|
|
|
|
category: Category.POKEMON,
|
|
|
|
set: {
|
|
name: "XY Black Star Promos",
|
|
code: "xyp"
|
|
}
|
|
}
|
|
|
|
export default card
|
|
|