1
0
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:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

58
data-asia/S/S9/002.ts Normal file
View 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