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

67 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: "Kazumasa Yasukuni",
category: "Pokemon",
hp: 110,
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"]
}, {
name: {
'zh-tw': "魯莽頭擊",
'zh-cn': "魯莽頭擊",
ja: "とびだしヘッド"
},
damage: 70,
cost: ["Psychic", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "30"
}],
retreat: 2,
regulationMark: "I",
rarity: "Rare",
dexId: [202]
}
export default card