mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-23 04:19:18 +00:00
Sword & Shield Fixes (#84)
* 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
This commit is contained in:
@ -12,14 +12,62 @@ const card: Card = {
|
||||
},
|
||||
|
||||
name: {
|
||||
en: "Lycanroc VMAX"
|
||||
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"
|
||||
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
|
||||
export default card
|
||||
|
Reference in New Issue
Block a user