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

41 lines
591 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 "../SV2P"
const card: Card = {
set: Set,
name: {
ja: "セビエ"
},
illustrator: "Tomokazu Komiya",
category: "Pokemon",
dexId: [996],
hp: 60,
types: ["Water"],
description: {
ja: "背びれで 熱を 吸収して 氷エネルギーに 変換する。 高温ほど エネルギーが 溜まる。"
},
stage: "Basic",
attacks: [{
cost: ["Water", "Colorless"],
name: {
ja: "たいあたり"
},
damage: 30
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 1
}
export default card