mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-07-29 19:19:50 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
56
data-asia/SV/SVDs/098.ts
Normal file
56
data-asia/SV/SVDs/098.ts
Normal file
@ -0,0 +1,56 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SVDs"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
th: "ฮาบูเนค",
|
||||
id: "Seviper"
|
||||
},
|
||||
|
||||
illustrator: "Nisota Niso",
|
||||
category: "Pokemon",
|
||||
hp: 110,
|
||||
types: ["Darkness"],
|
||||
|
||||
description: {
|
||||
th: "ลับดาบที่หางด้วยโขดหินแข็ง ๆ ขยับเข้าใกล้เหยื่อในขณะที่ซ่อนตัวในพงหญ้า แล้วใช้เขี้ยวพิษจู่โจม",
|
||||
id: "Seviper mengasah pedang di ekornya dengan batu keras. Pokémon ini bersembunyi, mendekati mangsanya melalui semak-semak, lalu menyerang mereka dengan taring beracunnya."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
th: "เขี้ยวคม",
|
||||
id: "Taring Tajam"
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
cost: ["Colorless"]
|
||||
}, {
|
||||
name: {
|
||||
th: "ฟาด",
|
||||
id: "Menebas Turun"
|
||||
},
|
||||
|
||||
effect: {
|
||||
th: "ถ้าโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นโปเกมอนวิวัฒนาการ การโจมตีนี้จะเพิ่มแดเมจอีก 50",
|
||||
id: "Jika Pokémon Bertarung lawan adalah Pokémon Evolusi, kerusakan yang diberikan bertambah sejumlah 50."
|
||||
},
|
||||
|
||||
damage: "50+",
|
||||
cost: ["Darkness", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user