mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-07-30 19:40:48 +00:00
feat: Add SV8s (#675)
This commit is contained in:
61
data-asia/SV/SV8s/107.ts
Normal file
61
data-asia/SV/SV8s/107.ts
Normal file
@ -0,0 +1,61 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV8s"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
id: "Landorus",
|
||||
th: "แลนโดลอส"
|
||||
},
|
||||
|
||||
illustrator: "Souichirou Gunjima",
|
||||
category: "Pokemon",
|
||||
hp: 130,
|
||||
types: ["Fighting"],
|
||||
|
||||
description: {
|
||||
id: "Tempat-tempat yang dikunjungi oleh Landorus menghasilkan panen yang melimpah sehingga Pokémon ini disebut sebagai Dewa Ladang.",
|
||||
th: "แผ่นดินที่แลนโดลอสไปเยือนจะเกิดผลผลิตมากมาย จึงถูกเรียกว่าเป็น เทพแห่งไร่สวน"
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
id: "Tinju Tenaga Dalam",
|
||||
th: "กำปั้นฮึดสู้"
|
||||
},
|
||||
|
||||
effect: {
|
||||
id: "Pilih 1 lembar Energi dari Trash sendiri, lalu kenakan pada Pokémon ini.",
|
||||
th: "เลือกการ์ดพลังงาน 1 ใบจากตำแหน่งทิ้งการ์ดฝ่ายเรา ติดที่โปเกมอนนี้"
|
||||
},
|
||||
|
||||
damage: 30,
|
||||
cost: ["Fighting"]
|
||||
}, {
|
||||
name: {
|
||||
id: "Buster Swing",
|
||||
th: "บัสเตอร์สวิง"
|
||||
},
|
||||
|
||||
effect: {
|
||||
id: "Kerusakan akibat serangan ini tidak terpengaruh oleh Resistansi.",
|
||||
th: "แดเมจของท่าต่อสู้นี้จะไม่นำความต้านทานมาคิด"
|
||||
},
|
||||
|
||||
damage: 130,
|
||||
cost: ["Fighting", "Colorless", "Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Grass",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user