1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-07 09:47:51 +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

59 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 '../Battle Styles'
const card: Card = {
set: Set,
name: {
en: "Rapid Strike Urshifu VMAX",
fr: "Shifours Mille Poings VMAX"
},
illustrator: "PLANETA Tsuji",
rarity: "Rare",
category: "Pokemon",
hp: 330,
types: ["Fighting"],
evolveFrom: {
en: "Rapid Strike Urshifu V",
fr: "Shifours Mille Poings-V"
},
attacks: [{
name: {
en: "Gale Thrust",
fr: "Coup dBourrasque"
},
effect: {
en: "If this Pokémon moved from your Bench to the Active Spot this turn, this attack does 120 more damage.",
fr: "Si ce Pokémon a été déplacé de votre Banc vers le Poste Actif pendant ce tour, cette attaque inflige 120 dégâts supplémentaires."
},
damage: "30+",
cost: ["Fighting"]
}, {
name: {
en: "G-Max Rapid Flow",
fr: "Multicoup G-Max"
},
effect: {
en: "Discard all Energy from this Pokémon. This attack does 120 damage to 2 of your opponents Pokémon. (Dont apply Weakness and Resistance for Benched Pokémon.)",
fr: "Défaussez toute lÉnergie de ce Pokémon. Cette attaque inflige 120 dégâts à 2 des Pokémon de votre adversaire. (Nappliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)"
},
cost: ["Fighting", "Fighting", "Colorless"]
}],
weaknesses: [{
type: "Psychic",
value: "×2"
}],
retreat: 2,
regulationMark: "E"
}
export default card