mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
61 lines
1.6 KiB
TypeScript
61 lines
1.6 KiB
TypeScript
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 |