1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00

75 lines
2.4 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 "../SV2a"
const card: Card = {
set: Set,
name: {
ja: "プリン",
'zh-tw': "胖丁",
th: "พูริน",
id: "Jigglypuff"
},
illustrator: "saino misaki",
rarity: "Common",
category: "Pokemon",
dexId: [39],
hp: 70,
types: ["Colorless"],
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: "Menuntun"
},
effect: {
ja: "自分の山札からサポートを1枚選び、相手に見せて、手札に加える。そして山札を切る。",
'zh-tw': "從自己的牌庫選擇1張支援者卡在給對手看過後加入手牌。並且重洗牌庫。",
th: "เลือกการ์ดซัพพอร์ต 1 ใบจากสำรับการ์ดฝ่ายเรา ให้ฝ่ายตรงข้ามดู นำขึ้นมือ แล้วสับสำรับการ์ด",
id: "Pilih 1 lembar Supporter dari Deck sendiri, perlihatkan ke lawan, lalu tambahkan ke Kartu Pegangan. Kemudian, kocok Deck."
}
}, {
cost: ["Colorless", "Colorless"],
name: {
ja: "ふみふみ",
'zh-tw': "踏踏",
th: "กระทืบเท้า",
id: "Injak-injak"
},
damage: "20×",
effect: {
ja: "コインを2回投げ、オモテの数×20ダメージ。",
'zh-tw': "擲2次硬幣造成正面出現的次數×20點傷害。",
th: "ทอยเหรียญ 2 ครั้ง แดเมจจะเท่ากับจำนวนครั้งที่ออกหัว x20",
id: "Lempar koin 2 kali. Serangan ini memberikan kerusakan sejumlah 20 untuk tiap lemparan dengan hasil sisi depan."
}
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card