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

52 lines
855 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 "../S11"
const card: Card = {
set: Set,
name: {
'zh-tw': "洛托姆V"
},
illustrator: "5ban Graphics",
category: "Pokemon",
hp: 190,
types: ["Lightning"],
stage: "Basic",
suffix: "V",
abilities: [{
type: "Ability",
name: {
'zh-tw': "即刻充電"
},
effect: {
'zh-tw': "在自己的回合時可使用1次若使用則自己的回合結束。從自己的牌庫抽出3張卡。"
}
}],
attacks: [{
name: {
'zh-tw': "廢鐵短路"
},
effect: {
'zh-tw': "將自己的棄牌區的任意數量的「寶可夢道具」放置於放逐區增加其張數×40點傷害。"
},
damage: "40+",
cost: ["Lightning", "Lightning"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "F"
}
export default card