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

59 lines
1.0 KiB
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: "トドグラー",
'zh-tw': "海魔獅",
'zh-cn': "海魔獅"
},
illustrator: "Mina Nakai",
rarity: "Common",
category: "Pokemon",
dexId: [364],
hp: 100,
types: ["Water"],
description: {
ja: "流氷の 上で 生活。 泳ぎながら 獲物の 匂いを 嗅ぎわけて 見つけだし 捕まえる。",
'zh-tw': "在浮冰上生活。能夠一邊 游泳一邊嗅出獵物的氣味, 把對方找出來獵捕。",
'zh-cn': "在浮冰上生活。能夠一邊 游泳一邊嗅出獵物的氣味, 把對方找出來獵捕。"
},
stage: "Stage1",
attacks: [{
cost: ["Water"],
name: {
ja: "つきたおし",
'zh-tw': "撞倒",
'zh-cn': "撞倒"
},
damage: 30
}, {
cost: ["Water", "Water"],
name: {
ja: "アイスボール",
'zh-tw': "冰球",
'zh-cn': "冰球"
},
damage: 60
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 3,
regulationMark: "H"
}
export default card