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

57 lines
924 B
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 "../SC2b"
const card: Card = {
set: Set,
name: {
'zh-tw': "騎士蝸牛"
},
illustrator: "Anesaki Dynamic",
category: "Pokemon",
hp: 120,
types: ["Metal"],
description: {
'zh-tw': "搶走小嘴蝸的殼,將自己全副武裝。在伽勒爾地區,騎士蝸牛非常受到人們喜愛。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "連斬"
},
effect: {
'zh-tw': "擲3次硬幣。若出現1次正面則增加20點傷害。若出現2次正面則增加70點傷害。若全部為正面則增加140點傷害。"
},
damage: "10+",
cost: ["Metal"]
}, {
name: {
'zh-tw': "硬殼攻擊"
},
damage: 60,
cost: ["Metal", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
retreat: 2,
regulationMark: "D"
}
export default card