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

33 lines
556 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 "../SI"
const card: Card = {
set: Set,
name: {
'zh-tw': "牙牙"
},
illustrator: "Saya Tsuruta",
category: "Pokemon",
hp: 60,
types: ["Dragon"],
stage: "Basic",
attacks: [{
name: {
'zh-tw': "超進化"
},
effect: {
'zh-tw': "擲1次硬幣若為正面則從自己的牌庫選擇1張「雙斧戰龍」卡放置於這隻「牙牙」身上完成進化。並且重洗牌庫。"
},
cost: ["Colorless"]
}],
retreat: 1,
regulationMark: "F"
}
export default card