mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-18 18:29:19 +00:00
Finished Complete Rework of the Database
This commit is contained in:
91
data/Diamond & Pearl/Majestic Dawn/42.ts
Normal file
91
data/Diamond & Pearl/Majestic Dawn/42.ts
Normal file
@ -0,0 +1,91 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Majestic Dawn'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Mothim",
|
||||
fr: "Papilord",
|
||||
},
|
||||
illustrator: "Masakazu Fukuda",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
414,
|
||||
],
|
||||
hp: 80,
|
||||
types: [
|
||||
"Grass",
|
||||
],
|
||||
evolveFrom: {
|
||||
en: "Burmy",
|
||||
fr: "Cheniti",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
abilities: [
|
||||
{
|
||||
type: "Poke-BODY",
|
||||
name: {
|
||||
en: "Disturbance Scales",
|
||||
fr: "Écailles tapageuses",
|
||||
},
|
||||
effect: {
|
||||
en: "Any damage done by attacks from your Pokémon to the Defending Pokémon isn't affected by Resistance.",
|
||||
fr: "Tous dégâts infligés par des attaques de vos Pokémon sur le Pokémon Défenseur ne sont pas affectés par la Résistance.",
|
||||
},
|
||||
},
|
||||
],
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Grass",
|
||||
],
|
||||
name: {
|
||||
en: "Get Help",
|
||||
fr: "À l'aide",
|
||||
},
|
||||
effect: {
|
||||
en: "Does 30 damage times the number of different types of Wormadam on your Bench.",
|
||||
fr: "Inflige 30 dégâts multipliés par le nombre de types différents de Cheniselle sur votre Banc.",
|
||||
},
|
||||
damage: 30,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
"Grass",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Quick Touch",
|
||||
fr: "Touche rapide",
|
||||
},
|
||||
effect: {
|
||||
en: "You may switch Mothim with 1 of your Benched Pokémon. If you do, move as many Energy cards attached to Mothim as you like to the new Active Pokémon.",
|
||||
fr: "Vous pouvez échanger Papilord avec 1 des Pokémon de votre Banc. Déplacez alors sur le nouveau Pokémon Actif autant de cartes Énergie attachées à Papilord que vous le voulez.",
|
||||
},
|
||||
damage: 40,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fire",
|
||||
value: "+20"
|
||||
},
|
||||
],
|
||||
resistances: [
|
||||
{
|
||||
type: "Fightning",
|
||||
value: "-20"
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user