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

47 lines
646 B
TypeScript
Raw Permalink 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 "../SCA"
const card: Card = {
set: Set,
name: {
'zh-tw': "水水獺"
},
illustrator: "nagimiso",
category: "Pokemon",
hp: 70,
types: ["Water"],
description: {
'zh-tw': "用腹部的扇貝貝戰鬥。擋住攻擊後,能迅速地斬切對手反擊。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "水槍"
},
damage: 10,
cost: ["Water"]
}, {
name: {
'zh-tw': "硬殼攻擊"
},
damage: 20,
cost: ["Water", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card