1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

56 lines
883 B
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 "../SC1b"
const card: Card = {
set: Set,
name: {
'zh-tw': "熔蟻獸"
},
illustrator: "Satoshi Shirai",
category: "Pokemon",
hp: 120,
types: ["Fire"],
description: {
'zh-tw': "從尾部的孔洞吸入空氣,燃起火焰。如果孔洞被堵住了,身體就會不舒服。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "舌舔"
},
effect: {
'zh-tw': "擲1次硬幣若為正面則將對手的戰鬥寶可夢【麻痺】。"
},
damage: 20,
cost: ["Colorless"]
}, {
name: {
'zh-tw': "噴射火焰"
},
effect: {
'zh-tw': "選擇1個這隻寶可夢身上附加的能量將其丟棄。"
},
damage: 120,
cost: ["Fire", "Fire", "Colorless"]
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 2,
regulationMark: "D"
}
export default card