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

75
data-asia/SV/SV1S/027.ts Normal file
View File

@ -0,0 +1,75 @@
import { Card } from "../../../interfaces"
import Set from "../SV1S"
const card: Card = {
set: Set,
name: {
ja: "キルリア",
'zh-tw': "奇魯莉安",
th: "เคอเรีย",
id: "Kirlia"
},
illustrator: "kawayoo",
rarity: "Common",
category: "Pokemon",
dexId: [281],
hp: 90,
types: ["Psychic"],
description: {
ja: "サイコパワーを 操り まわりの 空間を ねじ曲げることで 未来を 見通すことができる。",
'zh-tw': "能夠操縱精神力量來扭曲周圍的空間, 讓自己看見未來。",
th: "สามารถมองเห็นอนาคตได้โดยการบิดเบือนมิติรอบ ๆ ด้วยพลังจิต",
id: "Dengan membengkokkan dimensi ruang di sekitarnya menggunakan kekuatan psikokinesis, Kirlia dapat melihat masa depan."
},
stage: "Stage1",
attacks: [{
cost: ["Psychic", "Colorless"],
name: {
ja: "マジカルショット",
'zh-tw': "魔法射擊",
th: "เมจิคัลช็อต",
id: "Magical Shot"
},
damage: 30
}, {
cost: ["Psychic", "Psychic", "Colorless"],
name: {
ja: "サイコキネシス",
'zh-tw': "精神強念",
th: "ไซโคคิเนซิส",
id: "Psikis"
},
damage: "60+",
effect: {
ja: "相手のバトルポケモンについているエネルギーの数×20ダメージ追加。",
'zh-tw': "增加對手的戰鬥寶可夢身上附加的能量的數量×20點傷害。",
th: "แดเมจจะเพิ่มตามจำนวนพลังงานที่ติดอยู่กับโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้าม x20",
id: "Kerusakan yang diberikan bertambah sejumlah 20 untuk tiap Energi yang dikenakan pada Pokémon Bertarung lawan."
}
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "G"
}
export default card