mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-07-30 11:30:46 +00:00
feat: add the Japanese SV8 (#559)
This commit is contained in:
58
data-asia/SV/SV8/029.ts
Normal file
58
data-asia/SV/SV8/029.ts
Normal file
@ -0,0 +1,58 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV8"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
ja: "トドゼルガ"
|
||||
},
|
||||
|
||||
illustrator: "Mitsuhiro Arita",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
dexId: [365],
|
||||
hp: 170,
|
||||
types: ["Water"],
|
||||
|
||||
description: {
|
||||
ja: "2、30匹で 群れを つくる。 敵に 襲われると リーダーは 体を 張って 群れを 守る。"
|
||||
},
|
||||
|
||||
stage: "Stage2",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Water"],
|
||||
|
||||
name: {
|
||||
ja: "とうけつファング"
|
||||
},
|
||||
|
||||
damage: 60,
|
||||
|
||||
effect: {
|
||||
ja: "次の相手の番、ついているエネルギーが2個以下のポケモン全員は、ワザが使えない。(新しく場に出したポケモンもふくむ。)"
|
||||
}
|
||||
}, {
|
||||
cost: ["Water", "Water"],
|
||||
|
||||
name: {
|
||||
ja: "メガトンフォール"
|
||||
},
|
||||
|
||||
damage: 170,
|
||||
|
||||
effect: {
|
||||
ja: "このポケモンにも50ダメージ。"
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Metal",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 3
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user