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 '../Neo Discovery'
const card: Card = {
name: {
en: "Metapod",
},
illustrator: "Sumiyoshi Kizuki",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
11,
],
hp: 70,
types: [
"Grass",
],
evolveFrom: {
en: "Caterpie",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Harden",
},
effect: {
en: "During your opponent's next turn, whenever 20 or less damage is done to Metapod (after applying Weakness and Resistance), prevent that damage. (Any other effects of attacks still happen.)",
},
},
{
cost: [
"Grass",
"Grass",
],
name: {
en: "Hatch",
},
effect: {
en: "Flip a coin. If heads, remove all damage counters from Metapod. Then, search your deck for a card that evolves from Metapod and attach that card to Metapod. This counts as evolving Metapod. Shuffle your deck afterward.",
},
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
}
export default card