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

51 lines
829 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 "../S4"
const card: Card = {
set: Set,
name: {
'zh-tw': "暴噬龜"
},
illustrator: "Taira Akitsu",
category: "Pokemon",
hp: 140,
types: ["Water"],
description: {
'zh-tw': "性情凶暴的寶可夢。會用能咬斷鐵棍的顎部大口咬住獵物。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "虎鉗波"
},
effect: {
'zh-tw': "在這個回合,若從手牌使出了「露璃娜」,則將對手的戰鬥寶可夢【麻痺】。"
},
damage: 80,
cost: ["Water", "Colorless", "Colorless"]
}, {
name: {
'zh-tw': "衝浪"
},
damage: 140,
cost: ["Water", "Water", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 4,
regulationMark: "D"
}
export default card