1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00

64 lines
823 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 '../FireRed & LeafGreen'
const card: Card = {
name: {
en: "Metapod",
},
illustrator: "Atsuko Nishida",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
11,
],
hp: 80,
types: [
"Grass",
],
evolveFrom: {
en: "Caterpie",
},
stage: "Stage1",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Energy Protection",
},
effect: {
en: "Any damage done to Metapod by attacks is reduced by 10 for each Energy card attached to Metapod. You can't reduce more than 30 damage in this way.",
},
},
],
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Sharpen",
},
damage: 20,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
}
export default card