mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
50 lines
791 B
TypeScript
50 lines
791 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../S11a"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
'zh-tw': "醜醜魚"
|
||
},
|
||
|
||
illustrator: "313",
|
||
category: "Pokemon",
|
||
hp: 30,
|
||
types: ["Water"],
|
||
|
||
description: {
|
||
'zh-tw': "外表醜陋,所以不受歡迎。擁有驚人的生命力,因而成為了研究對象。"
|
||
},
|
||
|
||
stage: "Basic",
|
||
|
||
attacks: [{
|
||
name: {
|
||
'zh-tw': "覺醒"
|
||
},
|
||
|
||
effect: {
|
||
'zh-tw': "從自己的牌庫選擇1張從這隻寶可夢進化而來的卡,放置於這隻寶可夢身上完成進化。並且重洗牌庫。"
|
||
},
|
||
|
||
cost: ["Colorless"]
|
||
}, {
|
||
name: {
|
||
'zh-tw': "躍起"
|
||
},
|
||
|
||
damage: 10,
|
||
cost: ["Water"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Lightning",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 1,
|
||
regulationMark: "F"
|
||
}
|
||
|
||
export default card |