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:
49
data/Sword & Shield/Champion's Path/38.ts
Normal file
49
data/Sword & Shield/Champion's Path/38.ts
Normal file
@ -0,0 +1,49 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Champion\'s Path'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Absol",
|
||||
},
|
||||
illustrator: "kodama",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
hp: 100,
|
||||
types: [
|
||||
"Darkness",
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Darkness",
|
||||
"Darkness",
|
||||
],
|
||||
name: {
|
||||
en: "Dark Cutter",
|
||||
},
|
||||
|
||||
damage: 70,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Grass",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user