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

55
data-asia/SV/SVDs/129.ts Normal file
View File

@ -0,0 +1,55 @@
import { Card } from "../../../interfaces"
import Set from "../SVDs"
const card: Card = {
set: Set,
name: {
th: "โยคุบะริสึex",
id: "Greedent ex"
},
illustrator: "5ban Graphics",
category: "Pokemon",
hp: 260,
types: ["Colorless"],
stage: "Stage1",
suffix: "EX",
attacks: [{
name: {
th: "โลภเหลือเกิน",
id: "Super Rakus"
},
effect: {
th: "ดูการ์ด 3 ใบจากด้านบนของสำรับการ์ดฝ่ายเรา นำการ์ดนั้นขึ้นมือ หรือทิ้งการ์ดนั้นที่ตำแหน่งทิ้งการ์ด และจั่วการ์ด 3 ใบจากสำรับการ์ดฝ่ายเรา",
id: "Lihat 3 kartu dari atas Deck sendiri. Tambahkan kartu tersebut ke Kartu Pegangan atau buang kartu tersebut ke Trash dan ambil 3 kartu dari atas Deck sendiri."
},
cost: ["Colorless"]
}, {
name: {
th: "กลิ้งโค่โล่",
id: "Gelinding Tergelincir"
},
effect: {
th: "เทิร์นถัดไปของฝ่ายเรา โปเกมอนนี้จะใช้ [กลิ้งโค่โล่] ไม่ได้",
id: "Pada giliran sendiri berikutnya, Pokémon ini tidak dapat menggunakan Gelinding Tergelincir."
},
damage: 210,
cost: ["Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card