1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00

54 lines
1.2 KiB
TypeScript
Raw Permalink 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 "../SV7a"
const card: Card = {
set: Set,
name: {
'zh-tw': "投擲猴",
'zh-cn': "投擲猴",
ja: "ナゲツケサル"
},
illustrator: "Teeziro",
category: "Pokemon",
hp: 110,
types: ["Fighting"],
description: {
'zh-tw': "老大會選出10隻出外狩獵, 並把牠們帶回來的食物 平均分配給群體內的夥伴。",
'zh-cn': "老大會選出10隻出外狩獵, 並把牠們帶回來的食物 平均分配給群體內的夥伴。",
ja: "ボスが 選んだ 10匹で 狩りに 出かけ 取ってきた エサを 群れの 仲間で 平等に 分け合う。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "聯合投擲",
'zh-cn': "聯合投擲",
ja: "れんけいスロー"
},
effect: {
'zh-tw': "造成自己的場上的【基礎】寶可夢的數量×20點傷害。",
'zh-cn': "造成自己的場上的【基礎】寶可夢的數量×20點傷害。",
ja: "自分の場のたねポケモンの数×20ダメージ。"
},
damage: "20×",
cost: ["Fighting", "Colorless"]
}],
weaknesses: [{
type: "Psychic",
value: "×2"
}],
retreat: 1,
regulationMark: "H",
rarity: "Uncommon",
dexId: [766]
}
export default card