1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 00:09:18 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

View File

@ -0,0 +1,67 @@
import { Card } from '../../../interfaces'
import Set from '../Rising Rivals'
const card: Card = {
name: {
en: "Munchlax",
fr: "Goinfrex Niv. 13",
},
illustrator: "Tomokazu Komiya",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
446,
],
hp: 70,
types: [
"Colorless",
],
stage: "Basic",
abilities: [
{
type: "Poke-POWER",
name: {
en: "Baby Evolution",
fr: "Évolution bébé",
},
effect: {
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: [
"Colorless",
"Colorless",
],
name: {
en: "Rest",
fr: "Repos",
},
effect: {
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: "Fightning",
value: "+10"
},
],
retreat: 2,
}
export default card