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

70 lines
1.9 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': "<火箭隊的>多邊獸Z",
'zh-cn': "<火箭隊的>多邊獸Z",
ja: "ロケット団のポリゴンZ"
},
illustrator: "Anesaki Dynamic",
category: "Pokemon",
hp: 140,
types: ["Colorless"],
description: {
'zh-tw': "以成為更優秀的寶可夢為目標 所新追加的程式好像狀況不佳, 使得動作變得很奇怪。",
'zh-cn': "以成為更優秀的寶可夢為目標 所新追加的程式好像狀況不佳, 使得動作變得很奇怪。",
ja: "さらに 優れた ポケモンを 目指し 追加した プログラムに 不具合が あったらしく 動きが おかしい。"
},
stage: "Stage2",
abilities: [{
type: "Ability",
name: {
'zh-tw': "再構築",
'zh-cn': "再構築",
ja: "さいこうちく"
},
effect: {
'zh-tw': "在自己的回合若將自己的2張手牌丟棄則可使用1次。從自己的牌庫抽出1張卡。",
'zh-cn': "在自己的回合若將自己的2張手牌丟棄則可使用1次。從自己的牌庫抽出1張卡。",
ja: "自分の番に、自分の手札を2枚トラッシュするなら、1回使える。自分の山札を1枚引く。"
}
}],
attacks: [{
name: {
'zh-tw': "R指令",
'zh-cn': "R指令",
ja: "Rコマンド"
},
effect: {
'zh-tw': "造成自己的棄牌區的名稱中有「火箭隊」的支援者卡的張數×20點傷害。",
'zh-cn': "造成自己的棄牌區的名稱中有「火箭隊」的支援者卡的張數×20點傷害。",
ja: "自分のトラッシュにある、名前に「ロケット団」とつくサポートの枚数×20ダメージ。"
},
damage: "20×",
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "I",
rarity: "Uncommon",
dexId: [474]
}
export default card