1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-07 09:47:51 +00:00

75 lines
857 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

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 '../Call of Legends'
const card: Card = {
name: {
en: "Meganium",
},
illustrator: "Shin Nagasawa",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
154,
],
hp: 130,
types: [
"Grass",
],
evolveFrom: {
en: "Bayleef",
},
stage: "Stage2",
attacks: [
{
cost: [
"Grass",
],
name: {
en: "Sleep Powder",
},
effect: {
en: "The Defending Pokémon is now Asleep.",
},
damage: 30,
},
{
cost: [
"Grass",
"Colorless",
"Colorless",
],
name: {
en: "Giant Bloom",
},
effect: {
en: "Remove 2 damage counters from Meganium.",
},
damage: 60,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Water",
value: "-20"
},
],
}
export default card