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

feat: Add SV10 (#747)

This commit is contained in:
2025-05-24 20:58:26 +02:00
committed by GitHub
parent 651313ce70
commit 25df3092d2
99 changed files with 5615 additions and 0 deletions

53
data-asia/SV/SV10/046.ts Normal file
View File

@ -0,0 +1,53 @@
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