mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-16 01:19:18 +00:00
feat: Add SV9s (#746)
This commit is contained in:
56
data-asia/SV/SV9s/056.ts
Normal file
56
data-asia/SV/SV9s/056.ts
Normal file
@ -0,0 +1,56 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV9s"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
th: "เมแทงก์",
|
||||
id: "Metang"
|
||||
},
|
||||
|
||||
illustrator: "Oswaldo KATO",
|
||||
category: "Pokemon",
|
||||
hp: 100,
|
||||
types: ["Psychic"],
|
||||
|
||||
description: {
|
||||
th: "ดันบัล 2 ตัวเชื่อมต่อตัวเข้าด้วยกัน ด้วยเนื้อเยื่อสมอง 2 ก้อนที่ เชื่อมกันทำให้พลังจิตนั้นแข็งแกร่งขึ้นกว่าเดิม",
|
||||
id: "Dua Beldum telah menyatu. Karena 2 otaknya telah terhubung, kekuatan psikokinesisnya menjadi lebih kuat."
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
th: "ไซโคพันช์",
|
||||
id: "Pukulan Psikis"
|
||||
},
|
||||
|
||||
damage: 30,
|
||||
cost: ["Psychic"]
|
||||
}, {
|
||||
name: {
|
||||
th: "โขกหัวพลังจิต",
|
||||
id: "Sundulan Spiritual"
|
||||
},
|
||||
|
||||
damage: 50,
|
||||
cost: ["Psychic", "Psychic"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Darkness",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: "Fighting",
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "I"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user