mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-07-01 00:09:19 +00:00
feat: Add missing Cards to tk-dp-l (lucario) and tk-dp-m (manaphy) (#721)
This commit is contained in:
49
data/Trainer kits/DP trainer Kit (Lucario)/5.ts
Normal file
49
data/Trainer kits/DP trainer Kit (Lucario)/5.ts
Normal file
@ -0,0 +1,49 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../DP trainer Kit (Lucario)'
|
||||
|
||||
const card: Card = {
|
||||
dexId: [66],
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Machop"
|
||||
},
|
||||
|
||||
illustrator: "Atsuko Nishida",
|
||||
rarity: "None",
|
||||
category: "Pokemon",
|
||||
stage: "Basic",
|
||||
|
||||
hp: 60,
|
||||
|
||||
types: [
|
||||
"Fighting",
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Fighting",
|
||||
],
|
||||
name: {
|
||||
en: "Low Kick"
|
||||
},
|
||||
damage: 20
|
||||
}
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Psychic",
|
||||
value: "10+"
|
||||
}
|
||||
],
|
||||
|
||||
description: {
|
||||
en: "It hefts a GRAVELER repeatedly to strengthen its entire body. It uses every type of martial arts."
|
||||
},
|
||||
|
||||
retreat: 2
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user