mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
110 lines
1.7 KiB
TypeScript
110 lines
1.7 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: "dp5-24",
|
|
localId: 24,
|
|
|
|
// Card informations
|
|
name: {
|
|
en: "Leafeon",
|
|
fr: "Phyllali",
|
|
},
|
|
|
|
hp: 90,
|
|
|
|
type: [
|
|
Type.GRASS,
|
|
],
|
|
|
|
dexId: 470,
|
|
|
|
image: {
|
|
low: {
|
|
en: "https://assets.tcgdex.net/en/dp/dp5/24/low.png",
|
|
fr: "https://assets.tcgdex.net/fr/dp/dp5/24/low.png",
|
|
},
|
|
high: {
|
|
en: "https://assets.tcgdex.net/en/dp/dp5/24/high.png",
|
|
fr: "https://assets.tcgdex.net/fr/dp/dp5/24/high.png",
|
|
},
|
|
},
|
|
|
|
evolveFrom: {
|
|
en: "Eevee",
|
|
fr: "Evoli",
|
|
},
|
|
|
|
tags: [
|
|
Tag.STAGE1,
|
|
],
|
|
|
|
illustrator: {
|
|
id: 8,
|
|
name: "Masakazu Fukuda"
|
|
},
|
|
|
|
|
|
|
|
attacks: [{
|
|
cost: [
|
|
Type.GRASS,
|
|
Type.COLORLESS
|
|
],
|
|
name: {
|
|
en: "Spiral Drain",
|
|
fr: "Spirale épuisante",
|
|
},
|
|
text: {
|
|
en: "Remove 1 damage counter from Leafeon.",
|
|
fr: "Retirez à Phyllali 1 marqueur de dégât.",
|
|
},
|
|
damage: 40
|
|
},{
|
|
cost: [
|
|
Type.GRASS,
|
|
Type.COLORLESS,
|
|
Type.COLORLESS
|
|
],
|
|
name: {
|
|
en: "Leaf Blade",
|
|
fr: "Lame-feuille",
|
|
},
|
|
text: {
|
|
en: "Flip a coin. If heads, this attack does 50 damage plus 20 more damage.",
|
|
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 50 dégâts plus 20 dégâts supplémentaires.",
|
|
},
|
|
damage: 50
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: Type.FIRE,
|
|
value: "+20"
|
|
}],
|
|
|
|
resistances: [{
|
|
type: Type.WATER,
|
|
value: "-20"
|
|
}],
|
|
|
|
retreat: 1,
|
|
|
|
rarity: Rarity.Rare,
|
|
|
|
category: Category.POKEMON,
|
|
|
|
set: {
|
|
name: "Majestic Dawn",
|
|
code: "dp5"
|
|
}
|
|
}
|
|
|
|
export default card
|
|
|