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

62 lines
1.2 KiB
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 "../SV4a"
const card: Card = {
set: Set,
name: {
ja: "セビエ",
'zh-tw': "涼脊龍",
id: "Frigibax"
},
illustrator: "Taira Akitsu",
category: "Pokemon",
dexId: [996],
hp: 70,
types: ["Water"],
description: {
ja: "背びれで 熱を 吸収して 氷エネルギーに 変換する。 高温ほど エネルギーが 溜まる。",
'zh-tw': "會用背鰭吸收熱能以轉換成冰之能量。 溫度越高,累積的能量就越多。",
id: "Frigibax menyerap panas menggunakan sirip punggungnya dan mengubahnya menjadi energi es. Makin panas suhunya, makin banyak energi yang terkumpul."
},
stage: "Basic",
attacks: [{
cost: ["Water"],
name: {
ja: "もってくる",
'zh-tw': "呼喚",
id: "Mengumpulkan"
},
effect: {
ja: "自分の山札を1枚引く。",
'zh-tw': "從自己的牌庫抽出1張卡。",
id: "Ambil 1 kartu dari atas Deck sendiri."
}
}, {
cost: ["Water", "Colorless"],
name: {
ja: "たたく",
'zh-tw': "敲擊",
id: "Menghantam"
},
damage: 20
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card