1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 00:49:18 +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

65
data-asia/SV/SVHM/005.ts Normal file
View File

@ -0,0 +1,65 @@
import { Card } from "../../../interfaces"
import Set from "../SVHM"
const card: Card = {
set: Set,
name: {
'zh-tw': "拉帝亞斯",
th: "ลาทิอาส",
id: "Latias"
},
illustrator: "Takumi Wada",
category: "Pokemon",
hp: 110,
types: ["Psychic"],
description: {
'zh-tw': "能透過心靈感應交流情感。用能令光線折射的羽毛 包裹身體來隱藏自己的樣子。",
th: "สื่อความรู้สึกด้วยพลังจิต ใช้ขนปีกที่ทำให้แสงหักเหได้ห่อหุ้มร่างเพื่อเร้นกายหายตัว",
id: "Ia saling mengomunikasikan perasaannya dengan telepati. Pokémon ini menghilangkan wujudnya dengan membungkus tubuhnya menggunakan bulu yang membiaskan cahaya."
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "吸引",
th: "ยั่วยวน",
id: "Mengambil"
},
effect: {
'zh-tw': "從自己的牌庫抽出2張卡。",
th: "จั่วการ์ด 2 ใบจากสำรับการ์ดฝ่ายเรา",
id: "Ambil 2 kartu dari atas Deck sendiri."
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "潟湖飛行",
th: "ลากูนไฟลต์",
id: "Lagoon Flight"
},
damage: 60,
cost: ["Psychic", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "H"
}
export default card