mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-04 08:32:10 +00:00
* Added to interface * Added Regulation mark to all current cards * Ready for merge
55 lines
1.0 KiB
TypeScript
55 lines
1.0 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Shining Fates'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
fr: "Salarsen V",
|
||
en: "Toxtricity V"
|
||
},
|
||
|
||
illustrator: "5ban Graphics",
|
||
rarity: "Ultra Rare",
|
||
category: "Pokemon",
|
||
hp: 210,
|
||
types: ["Lightning"],
|
||
|
||
attacks: [{
|
||
name: {
|
||
fr: "Direct Toxik",
|
||
en: "Poison Jab"
|
||
},
|
||
|
||
effect: {
|
||
fr: "Le Pokémon Actif de votre adversaire est maintenant Empoisonné.",
|
||
en: "Your opponent’s Active Pokémon is now Poisoned."
|
||
},
|
||
|
||
damage: 20,
|
||
cost: ["Lightning"]
|
||
}, {
|
||
name: {
|
||
fr: "Émeute Électrique",
|
||
en: "Electric Riot"
|
||
},
|
||
|
||
effect: {
|
||
fr: "Si le Pokémon Actif de votre adversaire est Empoisonné, cette attaque inflige 90 dégâts supplémentaires.",
|
||
en: "If your opponent’s Active Pokémon is Poisoned, this attack does 90 more damage."
|
||
},
|
||
|
||
damage: "90+",
|
||
cost: ["Lightning", "Lightning", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Fighting",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 2,
|
||
regulationMark: "D"
|
||
}
|
||
|
||
export default card |