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

53 lines
843 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 "../SV1a"
const card: Card = {
set: Set,
name: {
ja: "ニャローテ"
},
illustrator: "Kouki Saitou",
category: "Pokemon",
dexId: [907],
hp: 90,
types: ["Grass"],
description: {
ja: "長い 体毛の下に 隠した ツタを 器用に 操り 硬い つぼみを 敵に 叩きつける。"
},
stage: "Stage1",
attacks: [{
cost: ["Grass"],
name: {
ja: "タネばくだん"
},
damage: 30
}, {
cost: ["Colorless", "Colorless"],
name: {
ja: "マジックウィップ"
},
damage: 50,
effect: {
ja: "相手のバトルポケモンをベンチポケモンと入れ替える。[バトル場に出すポケモンは相手が選ぶ。]"
}
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1
}
export default card