mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 20:02:15 +00:00
78 lines
1.0 KiB
TypeScript
78 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: "dpp-DP53",
|
|
localId: "DP53",
|
|
|
|
// Card informations
|
|
name: {
|
|
en: "Arceus",
|
|
},
|
|
|
|
hp: 120,
|
|
|
|
type: [
|
|
Type.COLORLESS,
|
|
],
|
|
|
|
dexId: 493,
|
|
|
|
image: {
|
|
low: {
|
|
en: "https://assets.tcgdex.net/en/dp/dpp/DP53/low.png",
|
|
},
|
|
high: {
|
|
en: "https://assets.tcgdex.net/en/dp/dpp/DP53/high.png",
|
|
},
|
|
},
|
|
|
|
evolveFrom: {},
|
|
|
|
tags: [
|
|
Tag.LEVELUP,
|
|
],
|
|
|
|
illustrator: {
|
|
id: 17,
|
|
name: "Shizurow"
|
|
},
|
|
|
|
abilities: [{
|
|
id: 180,
|
|
type: AbilityType.POKEBODY,
|
|
name: {
|
|
en: "Multitype",
|
|
},
|
|
text: {
|
|
en: "Arceus LV.X's type is the same type as its previous Level.",
|
|
}
|
|
}],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
rarity: Rarity.Common,
|
|
|
|
category: Category.POKEMON,
|
|
|
|
set: {
|
|
name: "DP Black Star Promos",
|
|
code: "dpp"
|
|
}
|
|
}
|
|
|
|
export default card
|
|
|