mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 08:39:17 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
68
data-asia/SV/SV2a/131.ts
Normal file
68
data-asia/SV/SV2a/131.ts
Normal file
@ -0,0 +1,68 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV2a"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
ja: "ラプラス",
|
||||
'zh-tw': "拉普拉斯",
|
||||
th: "ลาพลาซ",
|
||||
id: "Lapras"
|
||||
},
|
||||
|
||||
illustrator: "LINNE",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
dexId: [131],
|
||||
hp: 110,
|
||||
types: ["Water"],
|
||||
|
||||
description: {
|
||||
ja: "寒さに 強く 氷の 海も 平気。 皮膚は スベスベで 少しだけ ひんやり しているよ。",
|
||||
'zh-tw': "十分耐寒,不畏冰海。皮膚滑滑的, 摸起來會有點涼。",
|
||||
th: "ทนทานความหนาวเย็นแม้ทะเลน้ำแข็งก็ไม่เป็นไร ผิวหนังเรียบลื่นทำให้รู้สึกเย็นเล็กน้อย",
|
||||
id: "Lapras tahan dingin dan laut es pun tidak menjadi masalah baginya. Kulitnya mulus dan agak dingin."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Water"],
|
||||
|
||||
name: {
|
||||
ja: "せなかにのせる",
|
||||
'zh-tw': "後背乘載",
|
||||
th: "ให้ขี่หลัง",
|
||||
id: "Letakkan ke Punggung"
|
||||
},
|
||||
|
||||
effect: {
|
||||
ja: "自分の山札からポケモンを2枚まで選び、相手に見せて、手札に加える。そして山札を切る。",
|
||||
'zh-tw': "從自己的牌庫選擇最多2張寶可夢卡,在給對手看過後加入手牌。並且重洗牌庫。",
|
||||
th: "เลือกการ์ดโปเกมอนได้สูงสุด 2 ใบจากสำรับการ์ดฝ่ายเรา ให้ฝ่ายตรงข้ามดู นำขึ้นมือ แล้วสับสำรับการ์ด",
|
||||
id: "Pilih paling banyak 2 lembar Pokémon dari Deck sendiri, perlihatkan ke lawan, lalu tambahkan ke Kartu Pegangan. Kemudian, kocok Deck."
|
||||
}
|
||||
}, {
|
||||
cost: ["Water", "Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
ja: "アクアエッジ",
|
||||
'zh-tw': "水之刀鋒",
|
||||
th: "อควาเอดจ์",
|
||||
id: "Aqua Edge"
|
||||
},
|
||||
|
||||
damage: 90
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Lightning",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user