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

63 lines
1.4 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 "../S9a"
const card: Card = {
set: Set,
name: {
'zh-tw': "超甲狂犀",
ja: "ドサイドン"
},
illustrator: "GOSSAN",
category: "Pokemon",
hp: 190,
types: ["Fighting"],
description: {
'zh-tw': "會在手掌的洞裡塞進岩石和石丸子發射出去,每隻手裡 可以裝填3個。",
ja: "手の 穴に 岩や ダンゴロを 詰めて 発射。 装填できる 数は 片腕に つき 3つ。"
},
stage: "Stage2",
attacks: [{
name: {
'zh-tw': "土石砲",
ja: "どせきほう"
},
effect: {
'zh-tw': "將自己的牌庫上方1張卡丟棄若那張卡為能量卡則增加100點傷害。然後將丟棄的能量卡附於這隻寶可夢身上。",
ja: "自分の山札を上から1枚トラッシュし、そのカードがエネルギーなら、100ダメージ追加。その後、トラッシュしたエネルギーをこのポケモンにつける。"
},
damage: "50",
cost: ["Fighting"]
}, {
name: {
'zh-tw': "巨岩衝撞",
ja: "がんせきタックル"
},
effect: {
'zh-tw': "這隻寶可夢也受到30點傷害。",
ja: "このポケモンにも30ダメージ。"
},
damage: 180,
cost: ["Fighting", "Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 4,
regulationMark: "F",
rarity: "Uncommon",
dexId: [464]
}
export default card