1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon 6ca1ae94ed
Updated Cards to use new Rarities
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-05-04 13:58:48 +02:00

101 lines
1.6 KiB
TypeScript

import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
const card: Card = {
// ids
id: "dp5-41",
localId: 41,
// Card informations
name: {
en: "Monferno",
fr: "Chimpenfeu",
},
hp: 70,
type: [
Type.FIRE,
],
dexId: 391,
image: {
low: {
en: "https://assets.tcgdex.net/en/dp/dp5/41/low",
fr: "https://assets.tcgdex.net/fr/dp/dp5/41/low",
},
high: {
en: "https://assets.tcgdex.net/en/dp/dp5/41/high",
fr: "https://assets.tcgdex.net/fr/dp/dp5/41/high",
},
},
evolveFrom: {
en: "Chimchar",
fr: "Ouisticram",
},
tags: [
Tag.STAGE1,
],
illustrator: "Daisuke Ito",
attacks: [{
cost: [
Type.FIRE
],
name: {
en: "Fire Fang",
fr: "Crocs Feu",
},
text: {
en: "The Defending Pokémon is now Burned.",
fr: "Le Pokémon Défenseur est maintenant Brûlé.",
},
damage: 30
},{
cost: [
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Mid-air Strike",
fr: "Coup en l'air",
},
text: {
en: "Flip a coin. If heads, this attack does 30 damage plus 30 more damage.",
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 30 dégâts plus 30 dégâts supplémentaires.",
},
damage: 30
}],
weaknesses: [{
type: Type.WATER,
value: "+20"
}],
rarity: Rarity.UNCOMMON,
category: Category.POKEMON,
set: {
name: "Majestic Dawn",
code: "dp5"
}
}
export default card