1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-06 17:27:52 +00:00
Florian Bouillon 151c00be78
Updated informations (#23)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 20:35:35 +02:00

59 lines
1.3 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 '../SWSH Black Star Promos'
const card: Card = {
set: Set,
name: {
en: "Eternatus VMAX",
fr: "Éthernatos VMAX"
},
illustrator: "5ban Graphics",
rarity: "Common",
category: "Pokemon",
hp: 340,
types: ["Darkness"],
evolveFrom: {
en: "Eternatus V"
},
abilities: [{
type: "Ability",
name: {
en: "Eternal Zone",
fr: "Zone Éternelle"
},
effect: {
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.)",
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.)"
}
}],
attacks: [{
name: {
en: "Dread End",
fr: "Effroi Final"
},
effect: {
en: "This attack does 30 damage for each of your Darkness Pokémon in play.",
fr: "Cette attaque inflige 30 dégâts pour chacun de vos Pokémon Darkness en jeu."
},
damage: "30×",
cost: ["Darkness", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 3
}
export default card