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

56 lines
1021 B
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 "../S8"
const card: Card = {
set: Set,
name: {
'zh-tw': "大力鱷"
},
illustrator: "Anesaki Dynamic",
category: "Pokemon",
hp: 170,
types: ["Water"],
description: {
'zh-tw': "會用大而有力的雙顎咬住對手然後甩動脖子,將對手撕成碎片。"
},
stage: "Stage2",
abilities: [{
type: "Ability",
name: {
'zh-tw': "暴徒"
},
effect: {
'zh-tw': "在自己的回合當從手牌使出這張卡並完成進化時一定要使用1次。擲1次硬幣若為正面則將對手的牌庫上方5張卡丟棄。若為反面則將自己的牌庫上方5張卡丟棄。"
}
}],
attacks: [{
name: {
'zh-tw': "咬碎"
},
effect: {
'zh-tw': "選擇1個對手的戰鬥寶可夢身上附加的能量將其丟棄。"
},
damage: 140,
cost: ["Water", "Water", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 3,
regulationMark: "E"
}
export default card