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

54 lines
847 B
TypeScript
Raw 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 "../SVD"
const card: Card = {
set: Set,
name: {
'zh-tw': "洛托姆"
},
illustrator: "Kouki Saitou",
category: "Pokemon",
hp: 80,
types: ["Lightning"],
description: {
'zh-tw': "被當作驅動特殊馬達的動力源, 而被長期研究的寶可夢。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "廢品搜尋"
},
effect: {
'zh-tw': "從自己的棄牌區選擇1張物品卡在給對手看過後加入手牌。"
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "電擊"
},
effect: {
'zh-tw': "擲1次硬幣若為正面則將對手的戰鬥寶可夢【麻痺】。"
},
damage: 20,
cost: ["Lightning"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card