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

61 lines
1.1 KiB
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 "../SC2b"
const card: Card = {
set: Set,
name: {
'zh-tw': "基拉祈"
},
illustrator: "Sanosuke Sakuma",
category: "Pokemon",
hp: 70,
types: ["Metal"],
description: {
'zh-tw': "每1000年讓牠聽一次清澈的歌聲,就能讓牠維持7天的清醒。"
},
stage: "Basic",
abilities: [{
type: "Ability",
name: {
'zh-tw': "夢之預言"
},
effect: {
'zh-tw': "若這隻寶可夢在戰鬥場上則在自己的回合時可使用1次。查看自己的牌庫上方2張卡選擇其中1張加入手牌。將剩餘卡放回牌庫上方。"
}
}],
attacks: [{
name: {
'zh-tw': "奇幻之星"
},
effect: {
'zh-tw': "從自己的牌庫選擇最多7張基本能量卡以任意方式附於自己的寶可夢身上。並且重洗牌庫。"
},
cost: ["Psychic", "Fighting", "Metal"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
retreat: 1,
regulationMark: "D"
}
export default card