mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 16:19:18 +00:00
feat: Add SV8s (#675)
This commit is contained in:
61
data-asia/SV/SV8s/130.ts
Normal file
61
data-asia/SV/SV8s/130.ts
Normal file
@ -0,0 +1,61 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV8s"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
id: "Iron Crown",
|
||||
th: "หัวเหล็ก"
|
||||
},
|
||||
|
||||
illustrator: "akagi",
|
||||
category: "Pokemon",
|
||||
hp: 130,
|
||||
types: ["Metal"],
|
||||
|
||||
description: {
|
||||
id: "Kabarnya Pokémon ini menembakkan pedang bersinar untuk memotong dan mengoyak semua yang ada sekitarnya. Namun, tidak ada informasi lain dan identitasnya tidak terungkap.",
|
||||
th: "ดูเหมือนว่าจะยิงใบมีดเรืองแสงออกมาเฉือนทุกสิ่งทุกอย่างรอบตัวเป็น ชิ้น ๆ แต่ไม่มีใครรู้ข้อมูลเกี่ยวกับมันนอกเหนือจากนั้น"
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
id: "Delete Slash",
|
||||
th: "ดีลีตสแลช"
|
||||
},
|
||||
|
||||
effect: {
|
||||
id: "Jika jumlah Pokémon Cadangan lawan 3 atau lebih, kerusakan yang diberikan bertambah sejumlah 80.",
|
||||
th: "ถ้าจำนวนโปเกมอนบนเบนช์ฝ่ายตรงข้ามมากกว่าหรือเท่ากับ 3 ตัว การโจมตีนี้ จะเพิ่มแดเมจอีก 80"
|
||||
},
|
||||
|
||||
damage: "40+",
|
||||
cost: ["Metal", "Colorless"]
|
||||
}, {
|
||||
name: {
|
||||
id: "Slicing Blade",
|
||||
th: "สไลซ์เบลด"
|
||||
},
|
||||
|
||||
damage: 100,
|
||||
cost: ["Metal", "Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fire",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: "Grass",
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user