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:
61
data-asia/SV/SV8s/100.ts
Normal file
61
data-asia/SV/SV8s/100.ts
Normal 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
|
Reference in New Issue
Block a user