1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00

55 lines
1.5 KiB
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from "../../../interfaces"
import Set from "../SVDs"
const card: Card = {
set: Set,
name: {
th: "คอยล์",
id: "Magnemite"
},
illustrator: "ryoma uratsuka",
category: "Pokemon",
hp: 50,
types: ["Lightning"],
description: {
th: "ลอยบนท้องฟ้าโดยไม่สนใจแรงโน้มถ่วงได้ด้วยคลื่นแม่เหล็กไฟฟ้าที่ปล่อยออกมาจากชิ้นส่วนซ้ายขวาของตน",
id: "Dengan gelombang elektromagnetik yang dikeluarkan dari unit yang ada di sisi kiri dan kanannya, Magnemite melawan arus gravitasi dan melayang di udara."
},
stage: "Basic",
attacks: [{
name: {
th: "แมกเน็ทชาร์จ",
id: "Magnet Charge"
},
effect: {
th: "เลือกการ์ด [พลังงานพื้นฐาน[สายฟ้า]] ได้สูงสุด 2 ใบจากตำแหน่งทิ้งการ์ดฝ่ายเรา ติดที่โปเกมอนบนเบนช์ 1 ตัว",
id: "Pilih paling banyak 2 lembar Energi Dasar {Listrik} dari Trash sendiri, lalu kenakan pada 1 Pokémon Cadangan."
},
cost: ["Colorless"]
}, {
name: {
th: "สปีดบอล",
id: "Speed Ball"
},
damage: 20,
cost: ["Lightning", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card