mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
56 lines
1014 B
TypeScript
56 lines
1014 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../S4a"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
'zh-tw': "洛托姆"
|
||
},
|
||
|
||
illustrator: "ryoma uratsuka",
|
||
category: "Pokemon",
|
||
hp: 80,
|
||
types: ["Lightning"],
|
||
|
||
description: {
|
||
'zh-tw': "某位少年的發明促使人們開始製造各種活用洛托姆的機器。"
|
||
},
|
||
|
||
stage: "Basic",
|
||
|
||
abilities: [{
|
||
type: "Ability",
|
||
|
||
name: {
|
||
'zh-tw': "洛托選擇"
|
||
},
|
||
|
||
effect: {
|
||
'zh-tw': "在自己的回合,當從手牌將這張卡放置於備戰區時,可使用1次。從自己的牌庫選擇最多2張名稱中有「洛托姆」的物品卡,在給對手看過後加入手牌。並且重洗牌庫。"
|
||
}
|
||
}],
|
||
|
||
attacks: [{
|
||
name: {
|
||
'zh-tw': "電擊"
|
||
},
|
||
|
||
effect: {
|
||
'zh-tw': "擲1次硬幣若為正面,則將對手的戰鬥寶可夢【麻痺】。"
|
||
},
|
||
|
||
damage: 30,
|
||
cost: ["Lightning", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Fighting",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 1,
|
||
regulationMark: "D"
|
||
}
|
||
|
||
export default card |