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

53 lines
1.4 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: "Oswaldo KATO",
category: "Pokemon",
hp: 60,
types: ["Colorless"],
description: {
'zh-tw': "人工創造的寶可夢。 沒有呼吸,因此被期待在 任何地方都能大展身手。",
'zh-cn': "人工創造的寶可夢。 沒有呼吸,因此被期待在 任何地方都能大展身手。",
ja: "呼吸を していないので どんなところでも 活躍できると 期待される 人工の ポケモン。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "駭客攻擊",
'zh-cn': "駭客攻擊",
ja: "ハッキング"
},
effect: {
'zh-tw': "選擇1張自己的手牌將其丟棄。然後對手選擇1張對手自己的手牌將其丟棄。",
'zh-cn': "選擇1張自己的手牌將其丟棄。然後對手選擇1張對手自己的手牌將其丟棄。",
ja: "自分の手札を1枚選び、トラッシュする。その後、相手は相手自身の手札を1枚選び、トラッシュする。"
},
cost: ["Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "I",
rarity: "Common",
dexId: [137]
}
export default card