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

51 lines
784 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 "../S8"
const card: Card = {
set: Set,
name: {
'zh-tw': "水晶燈火靈VMAX"
},
illustrator: "AKIRA EGAWA",
category: "Pokemon",
hp: 320,
types: ["Fire"],
stage: "VMAX",
abilities: [{
type: "Ability",
name: {
'zh-tw': "咒縛陽炎"
},
effect: {
'zh-tw': "只要這隻寶可夢在戰鬥場上,對手無法從手牌使出並附上「寶可夢道具」。"
}
}],
attacks: [{
name: {
'zh-tw': "極巨靈騷"
},
effect: {
'zh-tw': "查看對手的手牌造成其中訓練家卡的張數×70點傷害。"
},
damage: "70×",
cost: ["Fire", "Colorless"]
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 2,
regulationMark: "E"
}
export default card