mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-26 01:49:54 +00:00
48 lines
1.1 KiB
TypeScript
48 lines
1.1 KiB
TypeScript
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 |