mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
96 lines
1.8 KiB
TypeScript
96 lines
1.8 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-68",
|
|
localId: 68,
|
|
|
|
// Card informations
|
|
name: {
|
|
en: "Munchlax",
|
|
fr: "Goinfrex",
|
|
},
|
|
|
|
hp: 60,
|
|
|
|
type: [
|
|
Type.COLORLESS,
|
|
],
|
|
|
|
dexId: 446,
|
|
|
|
image: {
|
|
low: {
|
|
en: "https://assets.tcgdex.net/en/dp/dp5/68/low",
|
|
fr: "https://assets.tcgdex.net/fr/dp/dp5/68/low",
|
|
},
|
|
high: {
|
|
en: "https://assets.tcgdex.net/en/dp/dp5/68/high",
|
|
fr: "https://assets.tcgdex.net/fr/dp/dp5/68/high",
|
|
},
|
|
},
|
|
|
|
evolveFrom: {},
|
|
|
|
tags: [
|
|
Tag.BASIC,
|
|
],
|
|
|
|
illustrator: "Masakazu Fukuda",
|
|
|
|
abilities: [{
|
|
id: 23,
|
|
type: AbilityType.POKEPOWER,
|
|
name: {
|
|
en: "Baby Evolution",
|
|
fr: "Évolution bébé",
|
|
},
|
|
text: {
|
|
en: "Once during your turn (before your attack), you may put Snorlax from your hand onto Munchlax (this counts as evolving Munchlax) and remove all damage counters from Munchlax.",
|
|
fr: "Une seule fois lors de votre tour (avant votre attaque), vous pouvez placer Ronflex de votre main sur Goinfrex (vous le faites ainsi évoluer) et retirer à Goinfrex tous ses marqueurs de dégât.",
|
|
}
|
|
}],
|
|
|
|
attacks: [{
|
|
cost: [
|
|
Type.COLORLESS,
|
|
Type.COLORLESS
|
|
],
|
|
name: {
|
|
en: "Lick",
|
|
fr: "Léchouille",
|
|
},
|
|
text: {
|
|
en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.",
|
|
fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Paralysé.",
|
|
},
|
|
damage: 20
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: Type.FIGHTING,
|
|
value: "+10"
|
|
}],
|
|
|
|
|
|
|
|
retreat: 2,
|
|
|
|
rarity: Rarity.COMMON,
|
|
|
|
category: Category.POKEMON,
|
|
|
|
set: {
|
|
name: "Majestic Dawn",
|
|
code: "dp5"
|
|
}
|
|
}
|
|
|
|
export default card
|