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:
53
data-asia/SV/SV1a/076.ts
Normal file
53
data-asia/SV/SV1a/076.ts
Normal 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
|
Reference in New Issue
Block a user