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

42 lines
658 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 "../SI"
const card: Card = {
set: Set,
name: {
'zh-tw': "七夕青鳥"
},
illustrator: "sui",
category: "Pokemon",
hp: 90,
types: ["Dragon"],
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
'zh-tw': "勸誘曲調"
},
effect: {
'zh-tw': "在自己的回合時可使用1次。從自己的牌庫選擇1張支援者卡給對手看過。重洗剩餘牌庫將所選的卡放回牌庫上方。"
}
}],
attacks: [{
name: {
'zh-tw': "滑翔"
},
damage: 60,
cost: ["Water", "Metal"]
}],
retreat: 0,
regulationMark: "E"
}
export default card