1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

68 lines
1.7 KiB
TypeScript
Raw 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 "../SV2D"
const card: Card = {
set: Set,
name: {
ja: "プリン",
'zh-tw': "胖丁",
th: "พูริน",
id: "Jigglypuff"
},
illustrator: "Yuu Nishida",
rarity: "Common",
category: "Pokemon",
dexId: [39],
hp: 70,
types: ["Psychic"],
description: {
ja: "つぶらな 瞳が 揺れるとき 眠たくなるような 不思議で 気持ちのいい 歌を 歌う。",
'zh-tw': "當牠圓圓的大眼睛轉動時,就會唱起奇妙的歌曲, 讓人舒服地昏昏欲睡。",
th: "เมื่อตากลมโตสั่นไหว จะร้องเพลงที่ทำให้ง่วงนอนและรู้สึกดีอย่างน่าประหลาด",
id: "Jigglypuff menyanyikan lagu ajaib yang menenangkan dan membuat siapa pun jadi mengantuk ketika mata bulatnya bergerak."
},
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
ja: "うたう",
'zh-tw': "唱歌",
th: "ร้องเพลง",
id: "Menyanyi"
},
effect: {
ja: "相手のバトルポケモンをねむりにする。",
'zh-tw': "將對手的戰鬥寶可夢【睡眠】。",
th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[หลับ]",
id: "Ubah kondisi Pokémon Bertarung lawan menjadi Tidur."
}
}, {
cost: ["Psychic", "Colorless"],
name: {
ja: "ビンタ",
'zh-tw': "巴掌",
th: "ตบ",
id: "Menampar"
},
damage: 20
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card