mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-07-30 03:29:51 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
48
data-asia/SV/SVDs/107.ts
Normal file
48
data-asia/SV/SVDs/107.ts
Normal file
@ -0,0 +1,48 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SVDs"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
th: "เมลตัน",
|
||||
id: "Meltan"
|
||||
},
|
||||
|
||||
illustrator: "Nobuhiro Imagawa",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Metal"],
|
||||
|
||||
description: {
|
||||
th: "อาศัยอยู่รวมกันเป็นฝูง เมื่อเวลามาถึง เมลตันตัวที่แข็งแกร่งตัวหนึ่งจะดูดกลืนผองเพื่อนเข้าไปในตัวแล้ววิวัฒนาการ",
|
||||
id: "Pokémon yang hidup secara berkelompok. Tetapi ketika saatnya tiba, satu Meltan yang kuat akan menyerap kawan-kawannya dan berevolusi."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
th: "หลอมละลาย",
|
||||
id: "Melarutkan"
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
cost: ["Metal"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fire",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: "Grass",
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user