1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-27 18:39:54 +00:00
Florian Bouillon 6d133f5343
Some checks failed
Build Docker image / build (push) Failing after 42s
feat: Add missing german sets (HGSS & COL) (#451)
2023-12-06 01:20:07 +01:00

101 lines
1.4 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../HeartGold SoulSilver'
const card: Card = {
name: {
en: "Meganium",
fr: "Meganium",
de: "Meganie"
},
illustrator: "Shin Nagasawa",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
154,
],
hp: 130,
types: [
"Grass",
],
evolveFrom: {
en: "Bayleef",
fr: "Macronium",
},
stage: "Stage2",
attacks: [
{
cost: [
"Grass",
],
name: {
en: "Sleep Powder",
fr: "Poudre dodo",
de: "Schlafpuder"
},
effect: {
en: "The Defending Pokémon is now Asleep.",
fr: "Le Pokémon Défenseur est maintenant Endormi.",
de: "Das Verteidigende Pokémon schläft jetzt."
},
damage: 30,
},
{
cost: [
"Grass",
"Colorless",
"Colorless",
],
name: {
en: "Giant Bloom",
fr: "Pousse géante",
de: "Riesenblüte"
},
effect: {
en: "Remove 2 damage counters from Meganium.",
fr: "Retirez 2 marqueurs de dégâts de Meganium.",
de: "Entferne 2 Schadensmarken von Meganie."
},
damage: 60,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Water",
value: "-20"
},
],
retreat: 2,
description: {
en: "Meganiums breath has the power to revive dead grass and plants. It can make them healthy again."
},
variants: {
normal: true,
reverse: false,
holo: false,
firstEdition: false
}
}
export default card