mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
65 lines
1.4 KiB
TypeScript
65 lines
1.4 KiB
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SV6"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
ja: "ゴリランダー",
|
||
'zh-tw': "轟擂金剛猩"
|
||
},
|
||
|
||
category: "Pokemon",
|
||
rarity: "Uncommon",
|
||
illustrator: "toriyufu",
|
||
dexId: [812],
|
||
hp: 180,
|
||
types: ["Grass"],
|
||
|
||
description: {
|
||
ja: "特別な 切り株の パワーを ドラミングで コントロール。 根っこを 操って 戦う。",
|
||
'zh-tw': "能夠透過打鼓來控制 特別的樹樁中的力量, 操縱樹根進行戰鬥。"
|
||
},
|
||
|
||
stage: "Stage2",
|
||
|
||
attacks: [{
|
||
cost: ["Grass"],
|
||
|
||
name: {
|
||
ja: "ドラムアタック",
|
||
'zh-tw': "鼓擊"
|
||
},
|
||
|
||
damage: 60,
|
||
|
||
effect: {
|
||
ja: "次の相手の番、このワザを受けたポケモンは、ワザを使うためのエネルギーとにげるためのエネルギーが、それぞれエネルギー1個ぶん多くなる。",
|
||
'zh-tw': "在下個對手的回合,受到這個招式的寶可夢使用招式所需的能量與【撤退】所需的能量,各增加1個【無】能量。"
|
||
}
|
||
}, {
|
||
cost: ["Grass", "Grass"],
|
||
|
||
name: {
|
||
ja: "ウッドハンマー",
|
||
'zh-tw': "木槌"
|
||
},
|
||
|
||
damage: 180,
|
||
|
||
effect: {
|
||
ja: "このポケモンにも50ダメージ。",
|
||
'zh-tw': "這隻寶可夢也受到50點傷害。"
|
||
}
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Fire",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 4,
|
||
regulationMark: "H"
|
||
}
|
||
|
||
export default card |