mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
24 lines
585 B
TypeScript
24 lines
585 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../SV7s"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
th: "ลำแสงมหาภัย",
|
|
id: "Sinar Berbahaya"
|
|
},
|
|
|
|
illustrator: "inose yukie",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[ไหม้]และ[สับสน]",
|
|
id: "Ubah kondisi Pokémon Bertarung lawan menjadi Luka Bakar dan Pusing."
|
|
},
|
|
|
|
trainerType: "Item",
|
|
regulationMark: "H"
|
|
}
|
|
|
|
export default card |