mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 10:52:10 +00:00
52 lines
759 B
TypeScript
52 lines
759 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SC2D"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
'zh-tw': "好啦魷"
|
||
},
|
||
|
||
illustrator: "sui",
|
||
category: "Pokemon",
|
||
hp: 60,
|
||
types: ["Darkness"],
|
||
|
||
description: {
|
||
'zh-tw': "旋轉著閃爍自己的發光體。透過改變閃爍的方式來和其他夥伴交流。"
|
||
},
|
||
|
||
stage: "Basic",
|
||
|
||
attacks: [{
|
||
name: {
|
||
'zh-tw': "撞擊"
|
||
},
|
||
|
||
damage: 10,
|
||
cost: ["Darkness"]
|
||
}, {
|
||
name: {
|
||
'zh-tw': "趁其不備"
|
||
},
|
||
|
||
effect: {
|
||
'zh-tw': "若對手的戰鬥寶可夢【混亂】,則增加50點傷害。"
|
||
},
|
||
|
||
damage: "20+",
|
||
cost: ["Colorless", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Grass",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 1,
|
||
regulationMark: "D"
|
||
}
|
||
|
||
export default card
|