1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00

62 lines
1.3 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from "../../../interfaces"
import Set from "../SLL"
const card: Card = {
set: Set,
name: {
'zh-tw': "劈斧螳螂",
ja: "バサギリ"
},
illustrator: "Shin Nagasawa",
category: "Pokemon",
hp: 140,
types: ["Fighting"],
description: {
'zh-tw': "用堅硬的岩石守護己身,以粗獷的斧頭砍倒大樹。性情暴躁易怒。要是在荒野遇見牠,逃跑將是唯一選擇。",
ja: "硬き岩で 身を守り 無骨な 斧は 大木を 切り倒す。 気性 荒々しく 荒地にて 遭遇しときは 逃げの一手。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "踢散",
ja: "けちらす"
},
effect: {
'zh-tw': "增加對手的備戰寶可夢的數量×30點傷害。",
ja: "相手のベンチポケモンの数×30ダメージ追加。"
},
damage: "10",
cost: ["Colorless", "Colorless"]
}, {
name: {
'zh-tw': "巨岩衝撞",
ja: "がんせきタックル"
},
effect: {
'zh-tw': "這隻寶可夢也受到50點傷害。",
ja: "このポケモンにも50ダメージ。"
},
damage: 150,
cost: ["Fighting", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 2,
regulationMark: "F",
dexId: [900]
}
export default card