mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-07-31 20:01:58 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
55
data-asia/SV/SV5K/014.ts
Normal file
55
data-asia/SV/SV5K/014.ts
Normal file
@@ -0,0 +1,55 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV5K"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
ja: "アリゲイツ",
|
||||
'zh-tw': "藍鱷",
|
||||
th: "อัลลิเกต"
|
||||
},
|
||||
|
||||
illustrator: "Jerky",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
dexId: [159],
|
||||
hp: 90,
|
||||
types: ["Water"],
|
||||
|
||||
description: {
|
||||
ja: "キバは 抜けても 次から 次に 生えてくる。いつも 口の中には 48本の キバが そろっている。",
|
||||
'zh-tw': "即使牙齒掉了也會不斷重新長出來。 嘴裡總是長滿著48顆牙齒。",
|
||||
th: "แม้เขี้ยวจะหลุดไป ก็จะงอกขึ้นมาใหม่เรื่อย ๆ ในปากจึงมีเขี้ยวครบ 48 ซี่เสมอ"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Water"],
|
||||
|
||||
name: {
|
||||
ja: "ぎゃくふんしゃ",
|
||||
'zh-tw': "逆向噴射",
|
||||
th: "พ่นน้ำสวนทาง"
|
||||
},
|
||||
|
||||
damage: 30,
|
||||
|
||||
effect: {
|
||||
ja: "このポケモンをベンチポケモンと入れ替える。",
|
||||
'zh-tw': "將這隻寶可夢與備戰寶可夢互換。",
|
||||
th: "สลับโปเกมอนนี้กับโปเกมอนบนเบนช์"
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Lightning",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user