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

63
data-asia/SV/SV4K/082.ts Normal file
View File

@ -0,0 +1,63 @@
import { Card } from "../../../interfaces"
import Set from "../SV4K"
const card: Card = {
set: Set,
name: {
ja: "デスカーンex",
th: "เดธคานex"
},
illustrator: "Eske Yoshinob",
category: "Pokemon",
hp: 260,
types: ["Psychic"],
stage: "Stage1",
suffix: "EX",
abilities: [{
type: "Ability",
name: {
ja: "こがねのひつぎ",
th: "โลงทอง"
},
effect: {
ja: "このポケモンが、相手のポケモンからワザのダメージを受けてきぜつしたとき、自分の山札から好きなカードを1枚選び、手札に加える。そして山札を切る。",
th: "เมื่อโปเกมอนนี้ ได้รับแดเมจของท่าต่อสู้จากโปเกมอนฝ่ายตรงข้ามและ[หมดสภาพ]แล้ว เลือกการ์ดที่ชอบ 1 ใบจากสำรับการ์ดฝ่ายเรา นำขึ้นมือ แล้วสับสำรับการ์ด"
}
}],
attacks: [{
cost: ["Psychic", "Psychic"],
name: {
ja: "ホロウハンズ",
th: "ฮอลโลว์แฮนด์"
},
damage: 110,
effect: {
ja: "ダメカン5個を、相手のベンチポケモンに好きなようにのせる。",
th: "วางตัวนับแดเมจ 5 ตัว บนโปเกมอนบนเบนช์ฝ่ายตรงข้ามตามชอบ"
}
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 2,
regulationMark: "G"
}
export default card