1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-26 12:52:13 +00:00

44 lines
718 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 "../SV8"
const card: Card = {
set: Set,
name: {
ja: "ナマケロ"
},
illustrator: "Aya Kusube",
rarity: "Common",
category: "Pokemon",
dexId: [287],
hp: 60,
types: ["Colorless"],
description: {
ja: "ナマケロの 怠けた 様子は 見ている 人の 怠け心を 存分に 刺激するのだ。"
},
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
ja: "のんびりする"
},
effect: {
ja: "このポケモンのHPを「60」回復する。次の自分の番、このポケモンはにげられない。"
}
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2
}
export default card