1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-25 17:39:54 +00:00

58 lines
1.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 "../SV10"
const card: Card = {
set: Set,
name: {
'zh-tw': "<火箭隊的>謎擬Q",
'zh-cn': "<火箭隊的>謎擬Q",
ja: "ロケット団のミミッキュ"
},
illustrator: "DOM",
category: "Pokemon",
hp: 60,
types: ["Psychic"],
description: {
'zh-tw': "棲息在陽光照射不到的陰暗處。 在人們面前現身時會用 看似皮卡丘的布來隱藏全身。",
'zh-cn': "棲息在陽光照射不到的陰暗處。 在人們面前現身時會用 看似皮卡丘的布來隱藏全身。",
ja: "陽の 当たらない 暗がりに 棲む。 人前に 出るときは ピカチュウに 似せた 布で 全身を 隠す。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "扮晶晶酒",
'zh-cn': "扮晶晶酒",
ja: "ほうせきごっこ"
},
effect: {
'zh-tw': "選擇1個對手的戰鬥場的「太晶」寶可夢持有的招式作為這個招式使用。",
'zh-cn': "選擇1個對手的戰鬥場的「太晶」寶可夢持有的招式作為這個招式使用。",
ja: "相手のバトル場の「テラスタル」のポケモンが持つワザを1つ選び、このワザとして使う。"
},
cost: ["Psychic", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "30"
}],
retreat: 0,
regulationMark: "I",
rarity: "Uncommon",
dexId: [778]
}
export default card