mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
52 lines
855 B
TypeScript
52 lines
855 B
TypeScript
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 |