mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-06 17:27:52 +00:00
59 lines
1.3 KiB
TypeScript
59 lines
1.3 KiB
TypeScript
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 can’t 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 |