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

52 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 "../S4a"
const card: Card = {
set: Set,
name: {
'zh-tw': "雷鳥海獸"
},
illustrator: "Hasuno",
category: "Pokemon",
hp: 130,
types: ["Lightning"],
description: {
'zh-tw': "牠凍成冰的上半身在顫抖時可以產生電能。非常不擅長走路。"
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
'zh-tw': "凍僵旋渦"
},
effect: {
'zh-tw': "只要這隻寶可夢在場上每次對手從手牌將能量附於寶可夢身上在那隻寶可夢身上放置2個傷害指示物。"
}
}],
attacks: [{
name: {
'zh-tw': "電球"
},
damage: 70,
cost: ["Lightning", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2,
regulationMark: "D"
}
export default card