1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00

59 lines
1.0 KiB
TypeScript
Raw Permalink 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 "../SV9"
const card: Card = {
set: Set,
name: {
ja: "イノムー",
'zh-tw': "長毛豬",
'zh-cn': "長毛豬"
},
illustrator: "Aliya Chen",
rarity: "Common",
category: "Pokemon",
dexId: [221],
hp: 100,
types: ["Fighting"],
description: {
ja: "長い 体毛に 覆われていて 寒さに 強く 氷の キバは 雪が降ると さらに 太くなる。",
'zh-tw': "全身被長長的體毛覆蓋, 非常耐寒。冰的獠牙在 下雪時會變得更粗。",
'zh-cn': "全身被長長的體毛覆蓋, 非常耐寒。冰的獠牙在 下雪時會變得更粗。"
},
stage: "Stage1",
attacks: [{
cost: ["Colorless"],
name: {
ja: "かいりき",
'zh-tw': "怪力",
'zh-cn': "怪力"
},
damage: 20
}, {
cost: ["Fighting", "Fighting"],
name: {
ja: "キバでつく",
'zh-tw': "牙撞",
'zh-cn': "牙撞"
},
damage: 50
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 3,
regulationMark: "I"
}
export default card