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

53 lines
1.3 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: "GOTO minori",
category: "Pokemon",
hp: 110,
types: ["Fighting"],
description: {
'zh-tw': "光是感覺到他方的視線 都會暴怒起來,然後去追 和牠對到眼的傢伙。",
'zh-cn': "光是感覺到他方的視線 都會暴怒起來,然後去追 和牠對到眼的傢伙。",
ja: "だれかの 視線を 感じただけで 猛烈に 怒りだす。 そして 目が合った ものを 追いかけるのだ。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "拖出",
'zh-cn': "拖出",
ja: "ひきずりだす"
},
effect: {
'zh-tw': "選擇1隻對手的備戰寶可夢與戰鬥寶可夢互換。然後新上場的寶可夢受到30點傷害。",
'zh-cn': "選擇1隻對手的備戰寶可夢與戰鬥寶可夢互換。然後新上場的寶可夢受到30點傷害。",
ja: "相手のベンチポケモンを1匹選び、バトルポケモンと入れ替える。その後、新しく出てきたポケモンに30ダメージ。"
},
cost: ["Fighting"]
}],
weaknesses: [{
type: "Psychic",
value: "×2"
}],
retreat: 2,
regulationMark: "I",
rarity: "Common",
dexId: [57]
}
export default card