mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
61 lines
1.7 KiB
TypeScript
61 lines
1.7 KiB
TypeScript
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 |