1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 00:49:18 +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

70
data-asia/SV/SV10/083.ts Normal file
View File

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