mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 16:19:18 +00:00
Finished Complete Rework of the Database
This commit is contained in:
58
data/XY/Kalos Starter Set/16.ts
Normal file
58
data/XY/Kalos Starter Set/16.ts
Normal file
@ -0,0 +1,58 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Kalos Starter Set'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Poochyena",
|
||||
fr: "Medhyèna",
|
||||
},
|
||||
illustrator: "Mizue",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
261,
|
||||
],
|
||||
hp: 60,
|
||||
types: [
|
||||
"Darkness",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Darkness",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Bite",
|
||||
fr: "Morsure",
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fightning",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
resistances: [
|
||||
{
|
||||
type: "Psychic",
|
||||
value: "-20"
|
||||
},
|
||||
],
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user