1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon 0d2a757cae
base DB
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-02-03 15:18:40 +01:00

91 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: "dp2-7",
localId: 7,
// Card informations
name: {
en: "Celebi",
},
hp: 60,
type: [
Type.GRASS,
],
dexId: 251,
image: {
low: {
en: "https://assets.tcgdex.net/en/dp/dp2/7/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/dp/dp2/7/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 0,
name: "Kagemaru Himeno"
},
attacks: [{
name: {
en: "Sprouting",
},
text: {
en: "Search your deck for a Grass Energy card and attach it to Celebi. Shuffle your deck afterward.",
},
},{
cost: [
Type.GRASS,
Type.GRASS
],
name: {
en: "Leaf Tornado",
},
text: {
en: "You may move any number of basic Grass Energy cards attached to your Pokémon to your other Pokémon in any way you like.",
},
damage: 30
}],
weaknesses: [{
type: Type.FIRE,
value: "+20"
}],
rarity: Rarity.RareHolo,
category: Category.POKEMON,
set: {
name: "Mysterious Treasures",
code: "dp2"
}
}
export default card