mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 08:19:17 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
51
data-asia/SV/SV1a/075.ts
Normal file
51
data-asia/SV/SV1a/075.ts
Normal file
@ -0,0 +1,51 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV1a"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
ja: "ニャオハ"
|
||||
},
|
||||
|
||||
illustrator: "Kouki Saitou",
|
||||
category: "Pokemon",
|
||||
dexId: [906],
|
||||
hp: 60,
|
||||
types: ["Grass"],
|
||||
|
||||
description: {
|
||||
ja: "フワフワの 体毛は 植物に 近い 成分。 こまめに 顔を 洗って 乾燥を 防ぐ。"
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Grass"],
|
||||
|
||||
name: {
|
||||
ja: "ひざしをあつめる"
|
||||
},
|
||||
|
||||
effect: {
|
||||
ja: "自分の山札から基本エネルギーを2枚まで選び、相手に見せて、手札に加える。そして山札を切る。"
|
||||
}
|
||||
}, {
|
||||
cost: ["Grass"],
|
||||
|
||||
name: {
|
||||
ja: "タネばくだん"
|
||||
},
|
||||
|
||||
damage: 10
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fire",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user