mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-29 22:32:10 +00:00
* Added to interface * Added Regulation mark to all current cards * Ready for merge
64 lines
909 B
TypeScript
64 lines
909 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Rebel Clash'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Metapod",
|
||
fr: "Chrysacier"
|
||
},
|
||
|
||
illustrator: "Asako Ito",
|
||
rarity: "Uncommon",
|
||
category: "Pokemon",
|
||
set: Set,
|
||
|
||
evolveFrom: {
|
||
en: "Caterpie",
|
||
fr: "Chenipan"
|
||
},
|
||
|
||
abilities: [
|
||
{
|
||
type: "Ability",
|
||
name: {
|
||
en: "Adaptive Evolution",
|
||
fr: "Évolution Adaptative"
|
||
},
|
||
effect: {
|
||
en: "This Pokémon can evolve during your first turn or the turn you play it.",
|
||
fr: "Ce Pokémon peut évoluer pendant votre premier tour ou pendant le tour où vous le jouez."
|
||
},
|
||
},
|
||
],
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Ram",
|
||
fr: "Collision"
|
||
},
|
||
|
||
damage: 20,
|
||
|
||
},
|
||
],
|
||
|
||
weaknesses: [
|
||
{
|
||
type: "Fire",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 3,
|
||
hp: 80,
|
||
types: ["Grass"],
|
||
regulationMark: "D"
|
||
}
|
||
|
||
export default card
|