1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00

70 lines
2.1 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 "../SV3"
const card: Card = {
set: Set,
name: {
ja: "クチート",
'zh-tw': "大嘴娃",
th: "คูชีท"
},
illustrator: "sowsow",
rarity: "Uncommon",
category: "Pokemon",
dexId: [303],
hp: 90,
types: ["Metal"],
description: {
ja: "鋼の ツノが 変形して できた 大きな アゴで 相手に がぶりと 噛みつくのだ。",
'zh-tw': "大嘴娃能用自己那由鋼角變化而成的巨大顎部將對手一口緊緊咬住。",
th: "กัดงับฝ่ายตรงข้ามด้วยกรามใหญ่ที่เปลี่ยนรูปร่างมาจากเขาเหล็ก"
},
stage: "Basic",
abilities: [{
type: "Ability",
name: {
ja: "スペシャルイーター",
'zh-tw': "特殊食客",
th: "สเปเชียลอีตเตอร์"
},
effect: {
ja: "自分の番に、このカードを手札からベンチに出したとき、1回使える。相手のバトルポケモンについている特殊エネルギーを1個選び、トラッシュする。",
'zh-tw': "在自己的回合從手牌將這張卡放置於備戰區時可使用1次。選擇1個對手的戰鬥寶可夢身上附加的特殊能量將其丟棄。",
th: "ในเทิร์นฝ่ายเรา เมื่อนำการ์ดนี้จากบนมือวางบนเบนช์ ใช้ได้ 1 ครั้ง เลือกพลังงานพิเศษที่ติดอยู่กับโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้าม 1 ลูก ทิ้งที่ตำแหน่งทิ้งการ์ด"
}
}],
attacks: [{
cost: ["Metal", "Colorless", "Colorless"],
name: {
ja: "するどいキバ",
'zh-tw': "銳利之牙",
th: "เขี้ยวคม"
},
damage: 90
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
retreat: 1,
regulationMark: "G"
}
export default card