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

61 lines
1.4 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 '../Shining Fates'
const card: Card = {
set: Set,
name: {
fr: "Éthernatos VMAX",
en: "Eternatus VMAX"
},
illustrator: "5ban Graphics",
rarity: "Rare",
category: "Pokemon",
hp: 340,
types: ["Darkness"],
evolveFrom: {
fr: "Éthernatos-V",
en: "Eternatus V"
},
abilities: [{
type: "Ability",
name: {
fr: "Zone Éternelle",
en: "Eternal Zone"
},
effect: {
fr: "Si tous vos Pokémon en jeu sont de type Darkness, vous pouvez avoir jusquà 8 Pokémon sur votre Banc et vous ne pouvez pas mettre de Pokémon non Darkness en jeu. (Si ce talent arrête de fonctionner, défaussez des Pokémon de votre Banc jusquà en avoir 5.)",
en: "If all of your Pokémon in play are Darkness type, you can have up to 8 Pokémon on your Bench, and you cant put non-Darkness Pokémon into play. (If this Ability stops working, discard Pokémon from your Bench until you have 5.)"
}
}],
attacks: [{
name: {
fr: "Effroi Final",
en: "Dread End"
},
effect: {
fr: "Cette attaque inflige 30 dégâts pour chacun de vos Pokémon Darkness en jeu.",
en: "This attack does 30 damage for each of your Darkness Pokémon in play."
},
damage: "30×",
cost: ["Darkness", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 3,
regulationMark: "D"
}
export default card