1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 14:52:09 +00:00
Florian Bouillon ec1b6a06b0
Add regulation mark (#17)
* Added to interface

* Added Regulation mark to all current cards

* Ready for merge
2021-05-28 11:21:10 +02:00

70 lines
1.2 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../Rebel Clash'
const card: Card = {
name: {
en: "Magmortar",
fr: "Maganon"
},
illustrator: "Kazuma Koda",
rarity: "Rare",
category: "Pokemon",
set: Set,
evolveFrom: {
en: "Magmar",
fr: "Magmar"
},
attacks: [
{
cost: [
"Fire",
"Colorless",
],
name: {
en: "Burst Punch",
fr: "Poing dEnfer"
},
effect: {
en: "Your opponents Active Pokémon is now Burned.",
fr: "Le Pokémon Actif de votre adversaire est maintenant Brûlé."
},
damage: 30,
},
{
cost: [
"Fire",
"Fire",
"Colorless",
],
name: {
en: "Ground Burn",
fr: "Brûlure au Sol"
},
effect: {
en: "Each player discards the top card of their deck. This attack does 100 more damage for each Energy card discarded in this way.",
fr: "Chaque joueur défausse la carte du dessus de son deck. Cette attaque inflige 100 dégâts supplémentaires pour chaque carte Énergie défaussée de cette façon."
},
damage: "80+",
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
retreat: 3,
hp: 140,
types: ["Fire"],
regulationMark: "D"
}
export default card