mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-08-04 13:21:58 +00:00
feat: add database update (#825)
This commit is contained in:
43
data/Scarlet & Violet/White Flare/133.ts
Normal file
43
data/Scarlet & Violet/White Flare/133.ts
Normal file
@@ -0,0 +1,43 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../White Flare"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Mienfoo",
|
||||
fr: "Kungfouine",
|
||||
de: "Lin-Fu",
|
||||
it: "Mienfoo",
|
||||
pt: "Mienfoo",
|
||||
es: "Mienfoo",
|
||||
'es-mx': "Mienfoo"
|
||||
},
|
||||
|
||||
rarity: "Illustration rare",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Fighting"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Fighting"],
|
||||
|
||||
name: {
|
||||
en: "Kick",
|
||||
fr: "Koud'Pied",
|
||||
de: "Tritt",
|
||||
it: "Calcio",
|
||||
pt: "Chute",
|
||||
es: "Patada",
|
||||
'es-mx': "Patada"
|
||||
},
|
||||
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "I"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user