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:
43
data-asia/SV/SV4a/302.ts
Normal file
43
data-asia/SV/SV4a/302.ts
Normal file
@ -0,0 +1,43 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV4a"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
ja: "オンバット",
|
||||
'zh-tw': "嗡蝠",
|
||||
id: "Noibat"
|
||||
},
|
||||
|
||||
illustrator: "Nelnal",
|
||||
category: "Pokemon",
|
||||
dexId: [714],
|
||||
hp: 70,
|
||||
types: ["Dragon"],
|
||||
|
||||
description: {
|
||||
ja: "大きな 耳から 超音波を 出して エサの 果物を 探す。 カジッチュを エサと 間違える。",
|
||||
'zh-tw': "從大大的耳朵發出超音波,尋找水果來填飽肚子。 會把啃果蟲誤認成食物。",
|
||||
id: "Noibat mengeluarkan gelombang ultrasonik dari kuping besarnya untuk mencari buah makanannya. Ia keliru mengira Applin sebagai makanannya."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Psychic", "Darkness"],
|
||||
|
||||
name: {
|
||||
ja: "かぜおこし",
|
||||
'zh-tw': "起風",
|
||||
id: "Hembusan Angin"
|
||||
},
|
||||
|
||||
damage: 40
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user