mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
59 lines
1.3 KiB
TypeScript
59 lines
1.3 KiB
TypeScript
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 |