mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
24 lines
482 B
TypeScript
24 lines
482 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../SVDs"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
th: "ยารักษาแผล[ไอเท็ม]",
|
|
id: "Obat Luka"
|
|
},
|
|
|
|
illustrator: "Ayaka Yoshida",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
th: "ฟื้นฟู HP ของโปเกมอนฝ่ายเรา 1 ตัว [30]",
|
|
id: "Pulihkan HP 1 Pokémon sendiri sejumlah 30."
|
|
},
|
|
|
|
trainerType: "Item",
|
|
regulationMark: "G"
|
|
}
|
|
|
|
export default card |