1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-06 05:19:55 +00:00

68 lines
1.8 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': "<火箭隊的>引夢貘人",
'zh-cn': "<火箭隊的>引夢貘人",
ja: "ロケット団のスリーパー"
},
illustrator: "Yuya Oka",
category: "Pokemon",
hp: 130,
types: ["Psychic"],
description: {
'zh-tw': "據說牠和對手對到眼時, 就會使出催眠術等 各式各樣的超能力。",
'zh-cn': "據說牠和對手對到眼時, 就會使出催眠術等 各式各樣的超能力。",
ja: "相手と 目が 合ったときに 催眠術など 数々の 超能力を 使うという。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "精神射擊",
'zh-cn': "精神射擊",
ja: "サイコショット"
},
damage: 40,
cost: ["Psychic"]
}, {
name: {
'zh-tw': "備戰區操縱",
'zh-cn': "備戰區操縱",
ja: "ベンチをあやつる"
},
effect: {
'zh-tw': "對手擲與對手自己的備戰寶可夢的數量相同次數的硬幣。對手的戰鬥寶可夢受到反面出現的次數×80點傷害。這個招式的傷害不計算弱點・抵抗力。",
'zh-cn': "對手擲與對手自己的備戰寶可夢的數量相同次數的硬幣。對手的戰鬥寶可夢受到反面出現的次數×80點傷害。這個招式的傷害不計算弱點・抵抗力。",
ja: "相手は相手自身のベンチポケモンの数ぶんコインを投げる。相手のバトルポケモンに、ウラの数×80ダメージ。このワザのダメージは弱点・抵抗力を計算しない。"
},
damage: "80×",
cost: ["Psychic", "Psychic", "Psychic"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "30"
}],
retreat: 2,
regulationMark: "I",
rarity: "Uncommon",
dexId: [97]
}
export default card