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

55 lines
1.3 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 "../SV4M"
const card: Card = {
set: Set,
name: {
ja: "ポリゴン2",
'zh-tw': "多邊獸Ⅱ",
th: "โพรีกอน2"
},
illustrator: "kurumitsu",
rarity: "Common",
category: "Pokemon",
dexId: [233],
hp: 90,
types: ["Colorless"],
description: {
ja: "AI機能を 搭載した 結果 ポリゴン2 同士にしか わからない 謎の 言語を 話しはじめた。",
'zh-tw': "搭載了AI功能後,開始說起了只有多邊獸Ⅱ彼此之間才能了解的神秘語言。",
th: "#N/A"
},
stage: "Stage1",
attacks: [{
cost: ["Colorless"],
name: {
ja: "パワーボール",
'zh-tw': "力量球",
th: "พาวเวอร์บอล"
},
damage: 50,
effect: {
ja: "このポケモンについているエネルギーを1個選び、トラッシュする。",
'zh-tw': "選擇1個這隻寶可夢身上附加的能量將其丟棄。",
th: "เลือกพลังงานที่ติดอยู่กับโปเกมอนนี้ 1 ลูก ทิ้งที่ตำแหน่งทิ้งการ์ด"
}
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card