mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
51 lines
827 B
TypeScript
51 lines
827 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../S6a"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
'zh-tw': "熔岩蝸牛"
|
||
},
|
||
|
||
illustrator: "Eri Yamaki",
|
||
category: "Pokemon",
|
||
hp: 130,
|
||
types: ["Fire"],
|
||
|
||
description: {
|
||
'zh-tw': "身體總是不斷起伏著,像熔岩一樣灼熱。會不時從殼裡冒出火花。"
|
||
},
|
||
|
||
stage: "Stage1",
|
||
|
||
attacks: [{
|
||
name: {
|
||
'zh-tw': "落石"
|
||
},
|
||
|
||
damage: 40,
|
||
cost: ["Colorless", "Colorless"]
|
||
}, {
|
||
name: {
|
||
'zh-tw': "身軀飛濺"
|
||
},
|
||
|
||
effect: {
|
||
'zh-tw': "擲3次硬幣,選擇與反面出現的次數相同數量的這隻寶可夢身上附加的能量,將其丟棄。"
|
||
},
|
||
|
||
damage: 150,
|
||
cost: ["Fire", "Fire", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Water",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 3,
|
||
regulationMark: "E"
|
||
}
|
||
|
||
export default card |