mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 00:09:18 +00:00
Finished Complete Rework of the Database
This commit is contained in:
50
data/Base/Base Set/65.ts
Normal file
50
data/Base/Base Set/65.ts
Normal file
@ -0,0 +1,50 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Base Set'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Staryu",
|
||||
},
|
||||
illustrator: "Keiji Kinebuchi",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
120,
|
||||
],
|
||||
hp: 40,
|
||||
types: [
|
||||
"Water",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Water",
|
||||
],
|
||||
name: {
|
||||
en: "Slap",
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Lightning",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user