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

47 lines
680 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 "../SVD"
const card: Card = {
set: Set,
name: {
'zh-tw': "夜盜火蜥"
},
illustrator: "Shiburingaru",
category: "Pokemon",
hp: 70,
types: ["Darkness"],
description: {
'zh-tw': "會挑釁獵物並引進狹窄的岩堆裡,接著噴出能造成 頭暈的毒瓦斯後奪其性命。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "瓦斯包圍"
},
damage: 10,
cost: ["Darkness"]
}, {
name: {
'zh-tw': "抓"
},
damage: 30,
cost: ["Darkness", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card