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

47 lines
657 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 "../SV-P"
const card: Card = {
set: Set,
name: {
'zh-tw': "潤水鴨"
},
illustrator: "Mizue",
category: "Pokemon",
hp: 70,
types: ["Water"],
description: {
'zh-tw': "很久以前從遠方來到了這裡棲息。羽毛分泌出的凝膠有防水和防污的效果。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "拍擊"
},
damage: 10,
cost: ["Colorless"]
}, {
name: {
'zh-tw': "踢"
},
damage: 20,
cost: ["Water", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card