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

54 lines
884 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 "../SV6"
const card: Card = {
set: Set,
name: {
'zh-tw': "吉利蛋"
},
illustrator: "Toshinao Aoki",
category: "Pokemon",
hp: 120,
types: ["Colorless"],
description: {
'zh-tw': "為了避免蛋被打破, 走起路來小心謹慎。 然而逃跑速度卻是快之無比。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "幸運貼附"
},
effect: {
'zh-tw': "從自己的手牌選擇1張基本能量卡附於自己的寶可夢身上。"
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "潛力"
},
effect: {
'zh-tw': "在下個自己的回合,這隻寶可夢無法使用招式。"
},
damage: 80,
cost: ["Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2,
regulationMark: "H"
}
export default card