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

50 lines
806 B
TypeScript
Raw 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: "Aya Kusube",
category: "Pokemon",
hp: 80,
types: ["Fire"],
description: {
'zh-tw': "偽裝成燈的樣子藏身在城鎮裡。一旦發現了臨近死期的人, 便會悄悄地跟在後面。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "火焰"
},
damage: 20,
cost: ["Fire"]
}, {
name: {
'zh-tw': "誘導火球"
},
effect: {
'zh-tw': "選擇1隻對手的備戰寶可夢與戰鬥寶可夢互換。然後新上場的寶可夢受到30點傷害。"
},
cost: ["Fire", "Colorless"]
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card