mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 16:19:18 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
61
data-asia/SV/SVDs/047.ts
Normal file
61
data-asia/SV/SVDs/047.ts
Normal file
@ -0,0 +1,61 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SVDs"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
th: "จิบะคอยล์",
|
||||
id: "Magnezone"
|
||||
},
|
||||
|
||||
illustrator: "Anesaki Dynamic",
|
||||
category: "Pokemon",
|
||||
hp: 170,
|
||||
types: ["Lightning"],
|
||||
|
||||
description: {
|
||||
th: "ว่ากันว่าจะบินไปทั่วท้องฟ้าพลางปล่อยคลื่นไฟฟ้าแปลก ๆ พร้อมกับรับคลื่นไฟฟ้าลึกลับไปด้วย",
|
||||
id: "Dikabarkan Magnezone menerima sinyal tidak dikenal ketika terbang di langit sambil memancarkan sinyal yang mencurigakan."
|
||||
},
|
||||
|
||||
stage: "Stage2",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
th: "แมกเนติกรีเจกต์",
|
||||
id: "Magnet Reject"
|
||||
},
|
||||
|
||||
effect: {
|
||||
th: "หากต้องการ สลับโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามกับโปเกมอนบนเบนช์ {ฝ่ายตรงข้ามเลือกโปเกมอนที่จะวางบนตำแหน่งต่อสู้}",
|
||||
id: "Pemain dapat menukar Pokémon Bertarung lawan dengan Pokémon Cadangan. [Pokémon yang akan dimasukkan ke Arena Bertarung dipilih oleh lawan.]"
|
||||
},
|
||||
|
||||
damage: 50,
|
||||
cost: ["Lightning"]
|
||||
}, {
|
||||
name: {
|
||||
th: "ฟ้าผ่า",
|
||||
id: "Guntur"
|
||||
},
|
||||
|
||||
effect: {
|
||||
th: "โปเกมอนนี้ก็จะได้รับแดเมจ 30 ด้วย",
|
||||
id: "Pokémon ini juga menerima kerusakan sejumlah 30."
|
||||
},
|
||||
|
||||
damage: 180,
|
||||
cost: ["Lightning", "Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user