mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-07 09:47:51 +00:00
45 lines
650 B
TypeScript
45 lines
650 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../SWSH Black Star Promos'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
en: "Single Strike Urshifu V"
|
||
},
|
||
|
||
illustrator: "5ban Graphics",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
hp: 220,
|
||
types: ["Fighting"],
|
||
|
||
attacks: [{
|
||
name: {
|
||
en: "Low Kick"
|
||
},
|
||
|
||
damage: 30,
|
||
cost: ["Fighting"]
|
||
}, {
|
||
name: {
|
||
en: "Brawny Knuckle"
|
||
},
|
||
|
||
effect: {
|
||
en: "This attack’s damage isn’t affected by Resistance."
|
||
},
|
||
|
||
damage: 180,
|
||
cost: ["Fighting", "Fighting", "Fighting", "Fighting"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Psychic",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 2
|
||
}
|
||
|
||
export default card |