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

73 lines
2.2 KiB
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 "../SV1a"
const card: Card = {
set: Set,
name: {
ja: "ブーピッグ",
'zh-tw': "噗噗豬",
th: "บูพิก",
id: "Grumpig"
},
illustrator: "Scav",
rarity: "Uncommon",
category: "Pokemon",
dexId: [326],
hp: 120,
types: ["Psychic"],
description: {
ja: "相手を 操るときの 不思議な ステップは 昔 外国で 大流行したことが ある。",
'zh-tw': "操縱對手時跳的奇異舞步,過去曾在外國掀起過 一陣風潮。",
th: "ท่าเต้นแปลก ๆ ตอนที่จะบงการอีกฝ่ายนั้นเคยเป็นที่นิยมในต่างแดนเมื่อนานมาแล้ว",
id: "Gerakan dansa unik Grumpig ketika ia sedang mengontrol lawan pernah menjadi tren besar di luar negeri."
},
stage: "Stage1",
attacks: [{
cost: ["Psychic"],
name: {
ja: "パワーステップ",
'zh-tw': "力量舞步",
th: "พาวเวอร์สเต็ป",
id: "Power Step"
},
effect: {
ja: "自分の山札から基本エネルギーを2枚まで選び、自分のポケモンに好きなようにつける。そして山札を切る。",
'zh-tw': "從自己的牌庫選擇最多2張基本能量卡以任意方式附於自己的寶可夢身上。並且重洗牌庫。",
th: "เลือกการ์ดพลังงานพื้นฐานได้สูงสุด 2 ใบจากสำรับการ์ดฝ่ายเรา ติดที่โปเกมอนฝ่ายเราตามชอบ แล้วสับสำรับการ์ด",
id: "Pilih paling banyak 2 lembar Energi Dasar dari Deck sendiri, lalu kenakan sesukanya pada Pokémon sendiri. Kemudian, kocok Deck."
}
}, {
cost: ["Psychic", "Colorless", "Colorless"],
name: {
ja: "しねんのずつき",
'zh-tw': "意念頭錘",
th: "ท่าโขกหัวพลังจิต",
id: "Sundulan Spiritual"
},
damage: 100
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "G"
}
export default card