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

47 lines
696 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: "Shigenori Negishi",
category: "Pokemon",
hp: 120,
types: ["Darkness"],
description: {
'zh-tw': "會用妖豔的身姿誘惑被牠的毒瓦斯弄得頭昏眼花的對手, 使其變成自己忠實的僕人。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "瓦斯包圍"
},
damage: 40,
cost: ["Darkness"]
}, {
name: {
'zh-tw': "重摑"
},
damage: 70,
cost: ["Darkness", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card