mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-17 01:49:19 +00:00
Finished Complete Rework of the Database
This commit is contained in:
65
data/Sword & Shield/Champion's Path/30.ts
Normal file
65
data/Sword & Shield/Champion's Path/30.ts
Normal file
@ -0,0 +1,65 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Champion\'s Path'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Lycanroc",
|
||||
},
|
||||
illustrator: "Ryuta Fuse",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
hp: 120,
|
||||
types: [
|
||||
"Fightning",
|
||||
],
|
||||
evolveFrom: {
|
||||
en: "Rockruff",
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Rock Throw",
|
||||
},
|
||||
|
||||
damage: 30,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
"Fightning",
|
||||
"Fightning",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Slashing Strike",
|
||||
},
|
||||
effect: {
|
||||
en: "During your next turn, this Pokémon can’t use Slashing Strike.",
|
||||
},
|
||||
damage: 150,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Grass",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user