mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
* some fixes Signed-off-by: Avior <github@avior.me> * Some more changes Signed-off-by: Avior <github@avior.me> * u Signed-off-by: Avior <github@avior.me> * continuing update Signed-off-by: Avior <github@avior.me> * Finished ? Signed-off-by: Avior <github@avior.me> * Removed files that were not meant to be * Remoed even more files
77 lines
1.6 KiB
TypeScript
77 lines
1.6 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Battle Styles'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
en: "Rapid Strike Urshifu V",
|
||
fr: "Shifours Mille Poings V",
|
||
es: "Urshifu Golpe Fluido V",
|
||
it: "Urshifu Pluricolpo V",
|
||
pt: "Urshifu Golpe Fluido V",
|
||
de: "Fließender-Angriff-Wulaosu V"
|
||
},
|
||
|
||
illustrator: "Ryota Murayama",
|
||
rarity: "Ultra Rare",
|
||
category: "Pokemon",
|
||
hp: 220,
|
||
types: ["Fighting"],
|
||
|
||
attacks: [{
|
||
name: {
|
||
en: "Strafe",
|
||
fr: "Bombarder",
|
||
es: "Pasada de Ataque",
|
||
it: "Mitragliare",
|
||
pt: "Bombardear",
|
||
de: "Beharken"
|
||
},
|
||
|
||
effect: {
|
||
en: "You may switch this Pokémon with 1 of your Benched Pokémon.",
|
||
fr: "Vous pouvez échanger ce Pokémon contre l'un de vos Pokémon de Banc.",
|
||
es: "Puedes cambiar este Pokémon por 1 de tus Pokémon en Banca.",
|
||
it: "Puoi scambiare questo Pokémon con uno della tua panchina.",
|
||
pt: "Você pode trocar este Pokémon por 1 dos seus Pokémon no Banco.",
|
||
de: "Du kannst dieses Pokémon gegen 1 Pokémon auf deiner Bank austauschen."
|
||
},
|
||
|
||
damage: 30,
|
||
cost: ["Fighting"]
|
||
}, {
|
||
name: {
|
||
en: "Hundred Furious Blows",
|
||
fr: "Multicoups Furieux",
|
||
es: "Cien Golpes Furiosos",
|
||
it: "Cento Colpi Distruttivi",
|
||
pt: "Centenas de Golpes Furiosos",
|
||
de: "Hundert heftige Schläge"
|
||
},
|
||
|
||
damage: 150,
|
||
cost: ["Fighting", "Fighting", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Psychic",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 2,
|
||
regulationMark: "E",
|
||
|
||
variants: {
|
||
normal: false,
|
||
reverse: false,
|
||
holo: true,
|
||
firstEdition: false
|
||
},
|
||
|
||
stage: "Basic",
|
||
suffix: "V"
|
||
}
|
||
|
||
export default card
|