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/SVDs/092.ts Normal file
View File

@ -0,0 +1,56 @@
import { Card } from "../../../interfaces"
import Set from "../SVDs"
const card: Card = {
set: Set,
name: {
th: "โคไรดอนex",
id: "Koraidon ex"
},
illustrator: "aky CG Works",
category: "Pokemon",
hp: 230,
types: ["Fighting"],
stage: "Basic",
suffix: "EX",
attacks: [{
name: {
th: "สปลิตบีม",
id: "Split Beam"
},
effect: {
th: "โปเกมอนบนเบนช์ฝ่ายตรงข้าม 2 ตัว ก็จะได้รับแดเมจตัวละ 20 ด้วย {โปเกมอนบนเบนช์จะไม่นำจุดอ่อนและความต้านทานมาคิด}",
id: "Serangan ini juga memberikan kerusakan masing-masing sejumlah 20 kepada 2 Pokémon Cadangan lawan. [Kelemahan dan Resistansi Pokémon Cadangan tidak mempengaruhi jumlah kerusakan.]"
},
damage: 20,
cost: ["Fighting"]
}, {
name: {
th: "ไกอาเพรส",
id: "Gaia Press"
},
effect: {
th: "โปเกมอนนี้ก็จะได้รับแดเมจ 30 ด้วย",
id: "Pokémon ini juga menerima kerusakan sejumlah 30."
},
damage: 230,
cost: ["Fighting", "Fighting", "Colorless"]
}],
weaknesses: [{
type: "Psychic",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card