mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-17 09:59:19 +00:00
Finished Complete Rework of the Database
This commit is contained in:
62
data/Sword & Shield/Champion's Path/24.ts
Normal file
62
data/Sword & Shield/Champion's Path/24.ts
Normal file
@ -0,0 +1,62 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Champion\'s Path'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Machop",
|
||||
},
|
||||
illustrator: "Shibuzoh.",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
hp: 70,
|
||||
types: [
|
||||
"Fightning",
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Fightning",
|
||||
],
|
||||
name: {
|
||||
en: "Low Kick",
|
||||
},
|
||||
|
||||
damage: 10,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
"Fightning",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Steady Punch",
|
||||
},
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, this attack does 40 more damage.",
|
||||
},
|
||||
damage: "20+",
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Psychic",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user