mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +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
74 lines
1.2 KiB
TypeScript
74 lines
1.2 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Evolving Skies'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
variants: {
|
||
normal: false,
|
||
reverse: false,
|
||
holo: true,
|
||
firstEdition: false
|
||
},
|
||
|
||
name: {
|
||
en: "Lycanroc VMAX",
|
||
fr: "Lougaroc VMAX",
|
||
es: "Lycanroc VMAX",
|
||
it: "Lycanroc VMAX",
|
||
pt: "Lycanroc VMAX",
|
||
de: "Wolwerock VMAX"
|
||
},
|
||
|
||
rarity: "Secret Rare",
|
||
category: "Pokemon",
|
||
hp: 320,
|
||
types: ["Fighting"],
|
||
stage: "VMAX",
|
||
illustrator: "Mitsuhiro Arita",
|
||
dexId: [745],
|
||
|
||
evolveFrom: {
|
||
en: "Lycanroc V",
|
||
fr: "Lougaroc-V",
|
||
es: "Lycanroc V",
|
||
it: "Lycanroc-V",
|
||
pt: "Lycanroc V",
|
||
de: "Wolwerock-V"
|
||
},
|
||
|
||
attacks: [{
|
||
cost: ["Fighting"],
|
||
|
||
name: {
|
||
en: "Hunting Claw"
|
||
},
|
||
|
||
effect: {
|
||
en: "Knock Out 1 of your opponent's Pokémon in play that has 60 HP or less remaining."
|
||
}
|
||
}, {
|
||
cost: ["Fighting", "Fighting", "Colorless"],
|
||
|
||
name: {
|
||
en: "Max Edge"
|
||
},
|
||
|
||
effect: {
|
||
en: "This attack also does 30 damage to 1 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)"
|
||
},
|
||
|
||
damage: 190
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Grass",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 1,
|
||
regulationMark: "E"
|
||
}
|
||
|
||
export default card
|