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