1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 19:02:10 +00:00

48 lines
976 B
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from "../../../interfaces"
import Set from "../SV4a"
const card: Card = {
set: Set,
name: {
ja: "パピモッチ",
'zh-tw': "狗仔包",
id: "Fidough"
},
illustrator: "sowsow",
category: "Pokemon",
dexId: [926],
hp: 50,
types: ["Psychic"],
description: {
ja: "しっとり すべすべの 触り心地。 吐息に 含まれている 酵母で まわりのものを 発酵させる。",
'zh-tw': "摸起來既濕潤又絲滑。吐出的氣息裡含有酵母, 可以使周圍的東西發酵。",
id: "Tubuh Fidough empuk, halus, dan nyaman dipegang. Napasnya yang mengandung ragi dapat memfermentasikan benda-benda yang ada di sekitarnya."
},
stage: "Basic",
attacks: [{
cost: ["Colorless", "Colorless"],
name: {
ja: "うしろげり",
'zh-tw': "後踢",
id: "Tendangan Belakang"
},
damage: 20
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card