mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-07-29 11:09:51 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
59
data-asia/S/S9/007.ts
Normal file
59
data-asia/S/S9/007.ts
Normal file
@ -0,0 +1,59 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S9"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "樹林龜",
|
||||
ja: "ハヤシガメ"
|
||||
},
|
||||
|
||||
illustrator: "Nisota Niso",
|
||||
category: "Pokemon",
|
||||
hp: 100,
|
||||
types: ["Grass"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "知道哪裡會湧出清澈的泉水,會讓夥伴寶可夢騎在牠背上, 運到那個地方去。",
|
||||
ja: "きれいな 水が わき出る 場所を 知っていて 仲間の ポケモンを 背中に 乗せて そこまで 運ぶ。"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
'zh-tw': "向陽甲殼",
|
||||
ja: "ひだまりのこうら"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "在自己的回合時,可使用1次。從自己的牌庫選擇1張【草】寶可夢卡,在給對手看過後加入手牌。並且重洗牌庫。",
|
||||
ja: "自分の番に1回使える。自分の山札からポケモンを1枚選び、相手に見せて、手札に加える。そして山札を切る。"
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "飛葉快刀",
|
||||
ja: "はっぱカッター"
|
||||
},
|
||||
|
||||
damage: 50,
|
||||
cost: ["Grass", "Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fire",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
regulationMark: "F",
|
||||
rarity: "Common",
|
||||
dexId: [388]
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user