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

54 lines
1.1 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: "Saboteri",
category: "Pokemon",
hp: 50,
types: ["Grass"],
description: {
'zh-tw': "包裹著身體的線球 擁有足以把天敵飛天螳螂 的鐮刀反彈回去的彈力。",
'zh-cn': "包裹著身體的線球 擁有足以把天敵飛天螳螂 的鐮刀反彈回去的彈力。",
ja: "体を 包みこむ 糸玉は 天敵の ストライクの カマを はね返す 弾力性を 持つ。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "猛撞",
'zh-cn': "猛撞",
ja: "とっしん"
},
effect: {
'zh-tw': "這隻寶可夢也受到10點傷害。",
'zh-cn': "這隻寶可夢也受到10點傷害。",
ja: "このポケモンにも10ダメージ。"
},
damage: 30,
cost: ["Grass"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "I",
rarity: "Common",
dexId: [917]
}
export default card