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

99 lines
1.9 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: "pl2-69",
localId: 69,
// Card informations
name: {
en: "Munchlax",
fr: "Goinfrex Niv. 13",
},
hp: 70,
type: [
Type.COLORLESS,
],
dexId: 446,
image: {
low: {
en: "https://assets.tcgdex.net/en/pl/pl2/69/low.png",
fr: "https://assets.tcgdex.net/fr/pl/pl2/69/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/pl/pl2/69/high.png",
fr: "https://assets.tcgdex.net/fr/pl/pl2/69/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 18,
name: "Tomokazu Komiya"
},
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 lui retirer tous ses marqueurs de dégât.",
}
}],
attacks: [{
cost: [
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Rest",
fr: "Repos",
},
text: {
en: "Remove all Special Conditions and 6 damage counters from Munchlax. Munchlax is now Asleep.",
fr: "Retirez à Goinfrex tous ses États Spéciaux ainsi que 6 marqueurs de dégât. Goinfrex est maintenant Endormi.",
},
}],
weaknesses: [{
type: Type.FIGHTING,
value: "+10"
}],
retreat: 2,
rarity: Rarity.Common,
category: Category.POKEMON,
set: {
name: "Rising Rivals",
code: "pl2"
}
}
export default card