1
0
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:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

56
data-asia/SV/SV4a/073.ts Normal file
View File

@ -0,0 +1,56 @@
import { Card } from "../../../interfaces"
import Set from "../SV4a"
const card: Card = {
set: Set,
name: {
ja: "ケーシィ",
'zh-tw': "凱西",
th: "เคซี",
id: "Abra"
},
illustrator: "Mitsuhiro Arita",
category: "Pokemon",
dexId: [63],
hp: 50,
types: ["Psychic"],
description: {
ja: "眠ったまま テレポート できる。 眠りが 深いほど 離れた 場所に 移動する という。",
'zh-tw': "就算在睡夢中也能使用瞬間移動。據說當牠睡得越熟, 瞬間移動的距離就會越遠。",
th: "สามารถเทเลพอร์ทได้ระหว่างที่หลับอยู่ ว่ากันว่ายิ่งหลับลึกก็จะยิ่งเคลื่อนตัวไปยังสถานที่ห่างไกลมากขึ้น",
id: "Abra dapat melakukan teleportasi sambil tidur. Konon, makin nyenyak tidurnya, makin jauh jarak teleportasinya."
},
stage: "Basic",
attacks: [{
cost: ["Psychic"],
name: {
ja: "サイコショット",
'zh-tw': "精神射擊",
th: "ไซโคช็อต",
id: "Psyshot"
},
damage: 20
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "G"
}
export default card