1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 08:19:17 +00:00

feat: Add SV8s (#675)

This commit is contained in:
2025-02-28 08:44:50 +01:00
committed by GitHub
parent e4099defdb
commit e8e9c23e14
245 changed files with 11903 additions and 0 deletions

61
data-asia/SV/SV8s/100.ts Normal file
View File

@ -0,0 +1,61 @@
import { Card } from "../../../interfaces"
import Set from "../SV8s"
const card: Card = {
set: Set,
name: {
id: "Donphan",
th: "ดอนแฟน"
},
illustrator: "GOSSAN",
category: "Pokemon",
hp: 150,
types: ["Fighting"],
description: {
id: "Biasanya selalu bersikap tenang. Tetapi, jika Donphan marah, ia akan membulatkan badannya, kemudian bergelinding menabrak lawan.",
th: "ปกติจะรักสงบ แต่ถ้าโกรธขึ้นมาจะม้วนตัวกลมแล้วกลิ้งชน"
},
stage: "Stage1",
attacks: [{
name: {
id: "Memukul Roboh",
th: "ตีให้ยับ"
},
effect: {
id: "Kerusakan akibat serangan ini tidak terpengaruh oleh efek yang sedang dialami Pokémon Bertarung lawan.",
th: "แดเมจของท่าต่อสู้นี้ จะไม่นำเอฟเฟกต์ที่มีผลอยู่กับโปเกมอนบนตำแหน่งต่อสู้ ฝ่ายตรงข้ามมาคิด"
},
damage: 40,
cost: ["Fighting"]
}, {
name: {
id: "Guard Rolling",
th: "การ์ดโรลลิง"
},
effect: {
id: "Pilih 2 Energi yang dikenakan pada Pokémon ini, lalu buang ke Trash. Pada giliran lawan berikutnya, kerusakan akibat serangan yang diterima Pokémon ini berkurang sejumlah 100.",
th: "เลือกพลังงานที่ติดอยู่กับโปเกมอนนี้ 2 ลูก ทิ้งที่ตำแหน่งทิ้งการ์ด เทิร์นถัดไป ของฝ่ายตรงข้าม แดเมจของท่าต่อสู้ที่โปเกมอนนี้จะได้รับจะถูก [-100]"
},
damage: 120,
cost: ["Fighting", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 4,
regulationMark: "H"
}
export default card