1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 16:39:18 +00:00

Added informations (#25)

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2021-05-26 22:20:17 +02:00
committed by GitHub
parent 5dab7afa10
commit dc52152f23
166 changed files with 7775 additions and 0 deletions

View File

@ -0,0 +1,58 @@
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: "KIYOTAKA OSHIYAMA",
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
}
export default card