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

49 lines
1.1 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 "../SV3"
const card: Card = {
set: Set,
name: {
ja: "キバニア",
'zh-tw': "利牙魚",
th: "คิบาเนีย"
},
illustrator: "Jerky",
rarity: "Common",
category: "Pokemon",
dexId: [318],
hp: 50,
types: ["Water"],
description: {
ja: "鋭い キバと たくましい 顎を もつ。 船乗りたちは キバニアの すみかには けっして 近づかない。",
'zh-tw': "擁有銳利的牙齒和結實的下巴。船員們絕對不會去靠近利牙魚棲息的地方。",
th: "มีเขี้ยวที่คมและกรามอันทรงพลังอยู่ ลูกเรือจะไม่เข้าใกล้รังของคิบาเนียเป็นอันขาด"
},
stage: "Basic",
attacks: [{
cost: ["Water"],
name: {
ja: "するどいキバ",
'zh-tw': "銳利之牙",
th: "เขี้ยวคม"
},
damage: 20
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card