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

61 lines
989 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 "../S8a"
const card: Card = {
set: Set,
name: {
'zh-tw': "索爾迦雷歐"
},
illustrator: "kirisAki",
category: "Pokemon",
hp: 170,
types: ["Metal"],
description: {
'zh-tw': "在遙遠過去的文獻中,留有牠是吞食太陽之獸的相關紀錄。"
},
stage: "Stage2",
abilities: [{
type: "Ability",
name: {
'zh-tw': "急奔"
},
effect: {
'zh-tw': "若這隻寶可夢在備戰區則在自己的回合時可使用1次。將這隻寶可夢與自己的戰鬥寶可夢互換。"
}
}],
attacks: [{
name: {
'zh-tw': "日光噴湧"
},
effect: {
'zh-tw': "從自己的棄牌區選擇最多2張基本能量卡附於1隻備戰寶可夢身上。"
},
damage: 100,
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
retreat: 2,
regulationMark: "E"
}
export default card