1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 03:42:13 +00:00

46 lines
646 B
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 "../SVLS"
const card: Card = {
set: Set,
name: {
ja: "ロコン"
},
illustrator: "Narumi Sato",
category: "Pokemon",
dexId: [37],
hp: 70,
types: ["Fire"],
description: {
ja: "温かい 6本の 尻尾は 体が 育つごとに 毛並みが 良くなり 美しく なっていく。"
},
stage: "Basic",
attacks: [{
cost: ["Fire"],
name: {
ja: "とっしん"
},
damage: 30,
effect: {
ja: "このポケモンにも10ダメージ。"
}
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 1,
rarity: "None"
}
export default card