1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 00:09:18 +00:00

feat: add the Japanese SV8 (#559)

This commit is contained in:
2024-11-06 00:58:08 +01:00
committed by GitHub
parent c1d83caca0
commit e30d54469d
107 changed files with 5124 additions and 0 deletions

56
data-asia/SV/SV8/037.ts Normal file
View File

@ -0,0 +1,56 @@
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