mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
95 lines
1.3 KiB
TypeScript
95 lines
1.3 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: "ex5-4",
|
||
localId: 4,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Dark Celebi",
|
||
},
|
||
|
||
hp: 70,
|
||
|
||
type: [
|
||
Type.GRASS,
|
||
Type.DARKNESS,
|
||
],
|
||
|
||
dexId: 251,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/ex/ex5/4/low.png",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/ex/ex5/4/high.png",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {},
|
||
|
||
tags: [
|
||
Tag.BASIC,
|
||
],
|
||
|
||
illustrator: {
|
||
id: 42,
|
||
name: "Ken Ikuji"
|
||
},
|
||
|
||
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Dark Provide",
|
||
},
|
||
text: {
|
||
en: "Attach up to 1 Grass or Darkness Energy card from your hand to your Pokémon.",
|
||
},
|
||
},{
|
||
cost: [
|
||
Type.GRASS,
|
||
Type.DARKNESS
|
||
],
|
||
name: {
|
||
en: "Leaf Poison",
|
||
},
|
||
text: {
|
||
en: "The Defending Pokémon is now Poisoned.",
|
||
},
|
||
damage: 20
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.FIRE,
|
||
value: "×2"
|
||
}],
|
||
|
||
|
||
|
||
|
||
|
||
rarity: Rarity.RareHolo,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "Hidden Legends",
|
||
code: "ex5"
|
||
}
|
||
}
|
||
|
||
export default card
|
||
|