1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-27 18:39:54 +00:00

47 lines
1.1 KiB
TypeScript
Raw 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 "../SV9s"
const card: Card = {
set: Set,
name: {
th: "อบูรี <ของลิเลีย>",
id: "Cutiefly <Lillie>"
},
illustrator: "Saya Tsuruta",
category: "Pokemon",
hp: 30,
types: ["Psychic"],
description: {
th: "เมื่อมันจับออราที่แผ่ความสนุกของคนหรือโปเกมอนได้ มันจะเข้าไป ใกล้และใช้ปากอันยาวของมันแทงใส่ ทำให้เจ็บล่ะ",
id: "Ketika merasakan aura menyenangkan dari manusia atau Pokémon, ia akan datang mendekat dan menyodok dengan belalainya yang panjang sehingga terasa sakit."
},
stage: "Basic",
attacks: [{
name: {
th: "อยู่นิ่ง ๆ",
id: "Tidak Bergerak"
},
effect: {
th: "ฟื้นฟู HP ของโปเกมอนนี้ [10]",
id: "Pulihkan HP Pokémon ini sejumlah 10."
},
cost: ["Psychic"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 0,
regulationMark: "I"
}
export default card