1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-16 17:39: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 '../Secret Wonders'
const card: Card = {
name: {
en: "Burmy Plant Cloak",
fr: "Cheniti Cape Plante",
},
illustrator: "Kouki Saitou",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
412,
],
hp: 40,
types: [
"Grass",
],
stage: "Basic",
abilities: [
{
type: "Poke-POWER",
name: {
en: "Wear Cloak",
fr: "Cape",
},
effect: {
en: "Once during your turn (before your attack), if Burmy Plant Cloak is your Active Pokémon, you may search your discard pile for a basic Grass Energy card and attach it to Burmy Plant Cloak.",
fr: "Une seule fois lors de votre tour (avant votre attaque), si Cheniti Cape Plante est votre Pokémon Actif, vous pouvez choisir dans votre pile de défausse une carte Énergie de base Grass et l'attacher à Cheniti Cape Plante.",
},
},
],
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Plant Cloak Tackle",
fr: "Charge cape plante",
},
effect: {
en: "If Burmy Plant Cloak has any Grass Energy attached to it, this attack does 10 damage plus 10 more damage.",
fr: "Si Cheniti Cape Plante possède de l'Énergie Grass, cette attaque inflige 10 dégâts plus 10 dégâts supplémentaires.",
},
damage: 10,
},
],
weaknesses: [
{
type: "Fire",
value: "+10"
},
],
retreat: 1,
}
export default card