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

47 lines
773 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 "../SCD"
const card: Card = {
set: Set,
name: {
'zh-tw': "樂天河童"
},
illustrator: "sowsow",
category: "Pokemon",
hp: 140,
types: ["Water"],
stage: "Stage2",
abilities: [{
type: "Ability",
name: {
'zh-tw': "嗨翻舞"
},
effect: {
'zh-tw': "在自己的回合當從手牌使出這張卡並完成進化時可使用1次。在這個回合自己的【基礎】寶可夢使用的招式對對手的戰鬥寶可夢造成的傷害「+100」點。"
}
}],
attacks: [{
name: {
'zh-tw': "飛濺"
},
damage: 120,
cost: ["Water", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 2,
regulationMark: "E"
}
export default card