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

56
data-asia/SV/SVDs/134.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: "Grafaiai ex"
},
illustrator: "aky CG Works",
category: "Pokemon",
hp: 250,
types: ["Colorless"],
stage: "Stage1",
suffix: "EX",
attacks: [{
name: {
th: "น้ำลายปวดชา",
id: "Air Liur Pelumpuh"
},
effect: {
th: "ทอยเหรียญ 1 ครั้งถ้าออกหัว จะทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[ชา]",
id: "Lempar koin 1 kali. Jika hasilnya sisi depan, ubah kondisi Pokémon Bertarung lawan menjadi Lumpuh."
},
damage: 30,
cost: ["Colorless"]
}, {
name: {
th: "พอย.พ.พอยซัน",
id: "Buang-buang Racun"
},
effect: {
th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[พิษ] เทิร์นถัดไปของฝ่ายเรา โปเกมอนนี้จะใช้ [พอย.พ.พอยซัน] ไม่ได้",
id: "Ubah kondisi Pokémon Bertarung lawan menjadi Racun. Pada giliran sendiri berikutnya, Pokémon ini tidak dapat menggunakan Buang-buang Racun."
},
damage: 180,
cost: ["Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card