mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-02 15:42:11 +00:00
90 lines
1.2 KiB
TypeScript
90 lines
1.2 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: "pl4-56",
|
|
localId: 56,
|
|
|
|
// Card informations
|
|
name: {
|
|
en: "Burmy Plant Cloak",
|
|
},
|
|
|
|
hp: 40,
|
|
|
|
type: [
|
|
Type.GRASS,
|
|
],
|
|
|
|
dexId: 412,
|
|
|
|
image: {
|
|
low: {
|
|
en: "https://assets.tcgdex.net/en/pl/pl4/56/low.png",
|
|
},
|
|
high: {
|
|
en: "https://assets.tcgdex.net/en/pl/pl4/56/high.png",
|
|
},
|
|
},
|
|
|
|
evolveFrom: {},
|
|
|
|
tags: [
|
|
Tag.BASIC,
|
|
],
|
|
|
|
illustrator: {
|
|
id: 25,
|
|
name: "Kyoko Umemoto"
|
|
},
|
|
|
|
abilities: [{
|
|
id: 157,
|
|
type: AbilityType.POKEBODY,
|
|
name: {
|
|
en: "Cloak Evolution",
|
|
},
|
|
text: {
|
|
en: "Burmy Plant Cloak can evolve during the turn you play it.",
|
|
}
|
|
}],
|
|
|
|
attacks: [{
|
|
cost: [
|
|
Type.GRASS,
|
|
Type.COLORLESS
|
|
],
|
|
name: {
|
|
en: "Tackle",
|
|
},
|
|
damage: 20
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: Type.FIRE,
|
|
value: "+10"
|
|
}],
|
|
|
|
|
|
|
|
|
|
|
|
rarity: Rarity.Common,
|
|
|
|
category: Category.POKEMON,
|
|
|
|
set: {
|
|
name: "Arceus",
|
|
code: "pl4"
|
|
}
|
|
}
|
|
|
|
export default card
|
|
|