mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-15 17:09:19 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
58
data-asia/S/S9/002.ts
Normal file
58
data-asia/S/S9/002.ts
Normal file
@ -0,0 +1,58 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S9"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "椰蛋樹",
|
||||
ja: "ナッシー"
|
||||
},
|
||||
|
||||
illustrator: "Naoyo Kimura",
|
||||
category: "Pokemon",
|
||||
hp: 140,
|
||||
types: ["Grass"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "3顆頭都想著不同的事。對自己以外的事情 似乎都沒什麼興趣。",
|
||||
ja: "3つの 頭は べつのことを 考えている。 自分以外は あまり 興味がない ようだ。"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "超級吸取",
|
||||
ja: "メガドレイン"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "將這隻寶可夢恢復「30」HP。",
|
||||
ja: "このポケモンのHPを「30」回復する。"
|
||||
},
|
||||
|
||||
damage: 70,
|
||||
cost: ["Grass", "Colorless", "Colorless"]
|
||||
}, {
|
||||
name: {
|
||||
'zh-tw': "種子炸彈",
|
||||
ja: "タネばくだん"
|
||||
},
|
||||
|
||||
damage: 130,
|
||||
cost: ["Grass", "Colorless", "Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fire",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
regulationMark: "F",
|
||||
rarity: "Common",
|
||||
dexId: [103]
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user