1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 19:02:10 +00:00

59 lines
1.8 KiB
TypeScript
Raw Permalink 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 "../S12"
const card: Card = {
set: Set,
name: {
'zh-tw': "托戈德瑪爾",
th: "โทเกะเดมารุ",
ja: "トゲデマル"
},
illustrator: "kawayoo",
category: "Pokemon",
hp: 80,
types: ["Metal"],
description: {
'zh-tw': "用背上的長毛來接收閃電和電氣寶可夢釋放的電擊, 然後將之儲存在電囊中。",
th: "ด้วยขนยาวกลางหลัง เมื่อได้รับไฟฟ้าช็อตจากโปเกมอนไฟฟ้าหรือสายฟ้าจะสะสมไฟไว้ที่ถุงไฟฟ้า",
ja: "背中の 長い 毛で 雷や でんきポケモンの 電撃を 受けて 電気袋に 充電する。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "托戈衝刺",
th: "โทเกะแดช",
ja: "トゲダッシュ"
},
effect: {
'zh-tw': "擲1次硬幣若為正面則在下個對手的回合就算這隻寶可夢【氣絕】對手也無法獲得獎賞卡。",
th: "ทอยเหรียญ 1 ครั้ง ถ้าออกหัว เทิร์นถัดไปของฝ่ายตรงข้าม แม้โปเกมอนนี้[หมดสภาพ] ฝ่ายตรงข้ามไม่สามารถหยิบการ์ดรางวัลได้",
ja: "コインを1回投げオモテなら、次の相手の番、このポケモンがきぜつしても、相手はサイドをとれない。"
},
damage: 10,
cost: ["Lightning"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "30"
}],
retreat: 2,
regulationMark: "F",
rarity: "Common",
dexId: [777]
}
export default card