mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
56 lines
883 B
TypeScript
56 lines
883 B
TypeScript
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
|