mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 00:29:19 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
49
data-asia/SV/SV3/068.ts
Normal file
49
data-asia/SV/SV3/068.ts
Normal file
@ -0,0 +1,49 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV3"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
ja: "パルデア ウパー",
|
||||
'zh-tw': "帕底亞 烏波",
|
||||
th: "พัลเดีย อูปา"
|
||||
},
|
||||
|
||||
illustrator: "Pani Kobayashi",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
dexId: [194],
|
||||
hp: 70,
|
||||
types: ["Darkness"],
|
||||
|
||||
description: {
|
||||
ja: "縄張り争いに 敗れて 陸で 暮らすうちに 毒の 粘膜で 体を 保護するように 変わった。",
|
||||
'zh-tw': "因搶輸地盤而到陸地上生活,久而久之變成了是 用帶毒的黏膜來保護身體。",
|
||||
th: "หลังจากที่แพ้สงครามแย่งชิงอาณาเขตจนต้องมาอาศัยอยู่บนบก ก็ปรับตัวให้มีเมือกพิษปกป้องร่างกาย"
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Darkness", "Colorless"],
|
||||
|
||||
name: {
|
||||
ja: "はねまわる",
|
||||
'zh-tw': "活蹦亂跳",
|
||||
th: "สะบัดตัว"
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user