mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
79 lines
1.0 KiB
TypeScript
79 lines
1.0 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: "neo1-12",
|
|
localId: 12,
|
|
|
|
// Card informations
|
|
name: {
|
|
en: "Pichu",
|
|
},
|
|
|
|
hp: 30,
|
|
|
|
type: [
|
|
Type.LIGHTNING,
|
|
],
|
|
|
|
dexId: 172,
|
|
|
|
image: {
|
|
low: {
|
|
en: "https://assets.tcgdex.net/en/neo/neo1/12/low.png",
|
|
},
|
|
high: {
|
|
en: "https://assets.tcgdex.net/en/neo/neo1/12/high.png",
|
|
},
|
|
},
|
|
|
|
evolveFrom: {},
|
|
|
|
tags: [
|
|
Tag.BASIC,
|
|
],
|
|
|
|
illustrator: {
|
|
id: 5,
|
|
name: "Ken Sugimori"
|
|
},
|
|
|
|
|
|
|
|
attacks: [{
|
|
cost: [
|
|
Type.COLORLESS
|
|
],
|
|
name: {
|
|
en: "Zzzap",
|
|
},
|
|
text: {
|
|
en: "Does 20 damage to each Pokémon in play that has a Pokémon Power. Don't apply Weakness and Resistance.",
|
|
},
|
|
}],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
rarity: Rarity.Rare,
|
|
|
|
category: Category.POKEMON,
|
|
|
|
set: {
|
|
name: "Neo Genesis",
|
|
code: "neo1"
|
|
}
|
|
}
|
|
|
|
export default card
|
|
|