1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 08:39:17 +00:00

feat: Add support for Asians Pokémon Cards (#481)

This commit is contained in:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

53
data-asia/SV/SV1a/076.ts Normal file
View File

@ -0,0 +1,53 @@
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