mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 00:09:18 +00:00
feat: Add SV8s (#675)
This commit is contained in:
61
data-asia/SV/SV8s/127.ts
Normal file
61
data-asia/SV/SV8s/127.ts
Normal file
@ -0,0 +1,61 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV8s"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
id: "Duraludon",
|
||||
th: "ดิวรัลดอน"
|
||||
},
|
||||
|
||||
illustrator: "Tonji Matsuno",
|
||||
category: "Pokemon",
|
||||
hp: 130,
|
||||
types: ["Metal"],
|
||||
|
||||
description: {
|
||||
id: "Tubuh logamnya kokoh, tetapi panas cenderung menumpuk sehingga ia selalu mengeluarkan panas dari celah ekornya.",
|
||||
th: "ร่างกายที่เป็นโลหะนั้นทนทานมาก แต่เก็บความร้อน มันจึงต้องระบาย ความร้อนออกมาทางร่องที่หาง"
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
id: "Menentang",
|
||||
th: "ตั้งใจสู้"
|
||||
},
|
||||
|
||||
damage: 50,
|
||||
cost: ["Metal", "Metal"]
|
||||
}, {
|
||||
name: {
|
||||
id: "Dural Beam",
|
||||
th: "ดิวรัลบีม"
|
||||
},
|
||||
|
||||
effect: {
|
||||
id: "Pilih 2 Energi yang dikenakan pada Pokémon ini, lalu buang ke Trash.",
|
||||
th: "เลือกพลังงานที่ติดอยู่กับโปเกมอนนี้ 2 ลูก ทิ้งที่ตำแหน่งทิ้งการ์ด"
|
||||
},
|
||||
|
||||
damage: 130,
|
||||
cost: ["Metal", "Metal", "Metal"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fire",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: "Grass",
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user