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

51 lines
780 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 "../S10a"
const card: Card = {
set: Set,
name: {
'zh-tw': "毒骷蛙"
},
illustrator: "Uta",
category: "Pokemon",
hp: 120,
types: ["Darkness"],
description: {
'zh-tw': "一躍而起接近敵人,用有毒的爪子狠抓對方! 光是擦傷就能將對手KO。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "突刺"
},
damage: 30,
cost: ["Darkness"]
}, {
name: {
'zh-tw': "衝天跳水"
},
effect: {
'zh-tw': "在下個對手的回合,這隻寶可夢受到招式的傷害「+50」點。"
},
damage: 120,
cost: ["Darkness", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2,
regulationMark: "F"
}
export default card