1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-26 01:49:54 +00:00

48 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: "Applin"
},
illustrator: "Tetsu Kayama",
category: "Pokemon",
hp: 40,
types: ["Grass"],
description: {
th: "เติบโตด้วยการกินเนื้อแอปเปิล ใช้ของเหลวในร่างกายทำให้เปลือก แข็งมากขึ้นและกันไม่ให้เน่าเสีย",
id: "Applin tumbuh dengan memakan daging buah apel. Pokémon ini menggunakan cairan tubuhnya untuk meningkatkan kekuatan kulitnya, serta menjaganya agar tidak membusuk."
},
stage: "Basic",
attacks: [{
name: {
th: "สมอลเดรน",
id: "Serapan Mini"
},
effect: {
th: "ฟื้นฟู HP ของโปเกมอนนี้ [10]",
id: "Pulihkan HP Pokémon ini sejumlah 10."
},
damage: 10,
cost: ["Grass"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "I"
}
export default card