1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 08:19:17 +00:00

feat: Add SV8s (#675)

This commit is contained in:
2025-02-28 08:44:50 +01:00
committed by GitHub
parent e4099defdb
commit e8e9c23e14
245 changed files with 11903 additions and 0 deletions

56
data-asia/SV/SV8s/067.ts Normal file
View File

@ -0,0 +1,56 @@
import { Card } from "../../../interfaces"
import Set from "../SV8s"
const card: Card = {
set: Set,
name: {
id: "Miraidon",
th: "มิไรดอน"
},
illustrator: "Nurikabe",
category: "Pokemon",
hp: 120,
types: ["Lightning"],
description: {
id: "Tampaknya Miraidon tertera di buku kuno dengan nama Iron Serpent. Dikabarkan Pokémon ini mengubah tanah lapang menjadi abu dengan petir.",
th: "ดูเหมือนว่าจะเป็นนาคเหล็กซึ่งมีชื่อในบันทึกเก่าแก่ ว่ากันว่ามันใช้ สายฟ้าทำให้ผืนดินกลายเป็นเถ้าถ่าน"
},
stage: "Basic",
attacks: [{
name: {
id: "Protect Code",
th: "โพรเทกโค้ด"
},
effect: {
id: "Pada giliran lawan berikutnya, semua Pokémon Futur sendiri tidak menerima kerusakan akibat serangan dari Pokémon {ex}. Jika Pokémon ini meninggalkan Arena Bertarung, efek ini menjadi tidak berlaku.",
th: "เทิร์นถัดไปของฝ่ายตรงข้าม โปเกมอน [อนาคต] ฝ่ายเราทุกตัว จะไม่ได้รับ แดเมจของท่าต่อสู้จาก [โปเกมอน【ex】] เมื่อโปเกมอนนี้ออกจากตำแหน่งต่อสู้ เอฟเฟกต์นี้จะหายไป"
},
damage: 40,
cost: ["Lightning", "Colorless"]
}, {
name: {
id: "Thunder Claw",
th: "ธันเดอร์คลอว์"
},
damage: 100,
cost: ["Lightning", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "H"
}
export default card