1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-30 03:29:51 +00:00

feat: Add support for Asians Pokémon Cards (#481)

This commit is contained in:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

49
data-asia/SV/SV3/021.ts Normal file
View File

@ -0,0 +1,49 @@
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