mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-08-10 07:51:58 +00:00
feat: Added Lost Origin datas (#360)
This commit is contained in:
60
data/Sword & Shield/Lost Origin/103.ts
Normal file
60
data/Sword & Shield/Lost Origin/103.ts
Normal file
@@ -0,0 +1,60 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Lost Origin"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Mienfoo",
|
||||
fr: "Kungfouine",
|
||||
es: "Mienfoo",
|
||||
it: "Mienfoo",
|
||||
pt: "Mienfoo",
|
||||
de: "Lin-Fu"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Fighting"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Fighting"],
|
||||
|
||||
name: {
|
||||
en: "Chop",
|
||||
fr: "Coup Tranchant",
|
||||
es: "Cortar",
|
||||
it: "Ceffone",
|
||||
pt: "Trincar",
|
||||
de: "Hacker"
|
||||
},
|
||||
|
||||
damage: 10
|
||||
}, {
|
||||
cost: ["Fighting", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Spiral Kick",
|
||||
fr: "Coup'd Pied en Spirale",
|
||||
es: "Patada Espiral",
|
||||
it: "Spiralcalcio",
|
||||
pt: "Chute Espiral",
|
||||
de: "Drehtritt"
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "F",
|
||||
|
||||
variants: {
|
||||
"normal": true,
|
||||
"reverse": true,
|
||||
"holo": false
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user