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

60
data-asia/SV/SVDs/106.ts Normal file
View File

@ -0,0 +1,60 @@
import { Card } from "../../../interfaces"
import Set from "../SVDs"
const card: Card = {
set: Set,
name: {
th: "โทเกะเดมารุ",
id: "Togedemaru"
},
illustrator: "Sekio",
category: "Pokemon",
hp: 80,
types: ["Metal"],
description: {
th: "พออยู่ในภาวะคับขันจะม้วนตัวและทำให้หนามกลางหลังตั้งชัน ปล่อยไฟฟ้าช็อตตามอำเภอใจ",
id: "Ketika dalam keadaan bahaya, Togedemaru membulatkan tubuhnya, mendirikan duri-duri di punggungnya, dan menembakkan serangan petir secara asal-asalan."
},
stage: "Basic",
attacks: [{
name: {
th: "ขดกลม",
id: "Membulat"
},
effect: {
th: "ทอยเหรียญ 1 ครั้งถ้าออกหัว เทิร์นถัดไปของฝ่ายตรงข้าม โปเกมอนนี้จะไม่ได้รับแดเมจของท่าต่อสู้",
id: "Lempar koin 1 kali. Jika hasilnya sisi depan, pada giliran lawan berikutnya, Pokémon ini tidak menerima kerusakan akibat serangan."
},
cost: ["Colorless"]
}, {
name: {
th: "กลิ้งโจมตี",
id: "Tubrukan Menggelinding"
},
damage: 50,
cost: ["Metal", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
retreat: 1,
regulationMark: "G"
}
export default card