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

50 lines
818 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 "../S11a"
const card: Card = {
set: Set,
name: {
'zh-tw': "萊希拉姆V"
},
illustrator: "N-DESIGN Inc.",
category: "Pokemon",
hp: 220,
types: ["Fire"],
stage: "Basic",
suffix: "V",
attacks: [{
name: {
'zh-tw': "璀璨之翼"
},
effect: {
'zh-tw': "從自己的牌庫選擇最多2張基本能量卡附於自己的1隻寶可夢身上。並且重洗牌庫。"
},
cost: ["Fire"]
}, {
name: {
'zh-tw': "皎白火焰"
},
effect: {
'zh-tw': "擲1次硬幣若為反面則在下個自己的回合這隻寶可夢無法使用招式。"
},
damage: 200,
cost: ["Fire", "Fire", "Colorless"]
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 2,
regulationMark: "F"
}
export default card