1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00

49 lines
674 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 "../SV1S"
const card: Card = {
set: Set,
name: {
ja: "メグロコ"
},
illustrator: "Nurikabe",
category: "Pokemon",
dexId: [551],
hp: 70,
types: ["Fighting"],
description: {
ja: "砂の中に 潜り 泳ぐように 移動。 敵に みつからないためと 体温を 下げない 知恵 なのだ。"
},
stage: "Basic",
attacks: [{
cost: ["Fighting"],
name: {
ja: "かじる"
},
damage: 10
}, {
cost: ["Fighting", "Fighting"],
name: {
ja: "ぶつかる"
},
damage: 30
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 2
}
export default card