mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-07-08 11:09:18 +00:00
feat: Add missing Cards to tk-dp-l (lucario) and tk-dp-m (manaphy) (#721)
This commit is contained in:
68
data/Trainer kits/DP trainer Kit (Lucario)/4.ts
Normal file
68
data/Trainer kits/DP trainer Kit (Lucario)/4.ts
Normal file
@ -0,0 +1,68 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../DP trainer Kit (Lucario)'
|
||||
|
||||
const card: Card = {
|
||||
dexId: [67],
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Machoke"
|
||||
},
|
||||
|
||||
illustrator: "Kouki Saitou",
|
||||
rarity: "None",
|
||||
category: "Pokemon",
|
||||
stage: "Stage1",
|
||||
|
||||
hp: 90,
|
||||
|
||||
types: [
|
||||
"Fighting",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Machop",
|
||||
},
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Fighting",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Karate Chop"
|
||||
},
|
||||
effect: {
|
||||
en: "Does 40 damage minus 10 damage for each damage counter on Machoke."
|
||||
},
|
||||
damage: "40-"
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
"Fighting",
|
||||
"Fighting",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Seismic Toss"
|
||||
},
|
||||
damage: "60"
|
||||
}
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Psychic",
|
||||
value: "20+"
|
||||
}
|
||||
],
|
||||
|
||||
description: {
|
||||
en: "MACHOKE's boundless power is very dangerous, so it wears a belt that suppresses its energy."
|
||||
},
|
||||
|
||||
retreat: 2
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user