1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-26 12:52:13 +00:00

56 lines
960 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 "../SV8"
const card: Card = {
set: Set,
name: {
ja: "ロトム"
},
illustrator: "Shinya Mizuno",
rarity: "Common",
category: "Pokemon",
dexId: [479],
hp: 80,
types: ["Lightning"],
description: {
ja: "特殊な モーターを 動かす 動力源として 長い あいだ 研究されていた ポケモン。"
},
stage: "Basic",
attacks: [{
cost: ["Lightning"],
name: {
ja: "クラッシュパルス"
},
effect: {
ja: "相手の手札を見て、その中にある「グッズ」と「ポケモンのどうぐ」を、すべてトラッシュする。"
}
}, {
cost: ["Lightning"],
name: {
ja: "エネショート"
},
damage: "20×",
effect: {
ja: "相手のバトルポケモンについているエネルギーの数×20ダメージ。"
}
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1
}
export default card