mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 11:52:16 +00:00
55 lines
1.3 KiB
TypeScript
55 lines
1.3 KiB
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SVDs"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
th: "โอลีวา",
|
||
id: "Arboliva"
|
||
},
|
||
|
||
illustrator: "KEIICHIRO ITO",
|
||
category: "Pokemon",
|
||
hp: 140,
|
||
types: ["Grass"],
|
||
|
||
description: {
|
||
th: "อ่อนโยนและมีความเมตตาต่อผู้อื่นเป็นอย่างมาก จะแบ่งน้ำมันที่อร่อยและมีสารอาหารเปี่ยมล้นให้กับโปเกมอนที่อ่อนแอ",
|
||
id: "Sifatnya tenang dan sangat penyayang. Arboliva memberikan minyak bernutrisi nan lezat kepada Pokémon yang melemah."
|
||
},
|
||
|
||
stage: "Stage2",
|
||
|
||
attacks: [{
|
||
name: {
|
||
th: "ผลไม้แห่งการรักษา",
|
||
id: "Buah Penyembuh"
|
||
},
|
||
|
||
effect: {
|
||
th: "ฟื้นฟู HP ทั้งหมดของโปเกมอนบนเบนช์ฝ่ายเรา 1 ตัว",
|
||
id: "Pulihkan HP 1 Pokémon Cadangan sendiri sepenuhnya."
|
||
},
|
||
|
||
cost: ["Grass"]
|
||
}, {
|
||
name: {
|
||
th: "ออยล์ช็อต",
|
||
id: "Oil Shot"
|
||
},
|
||
|
||
damage: 90,
|
||
cost: ["Grass"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Fire",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 2,
|
||
regulationMark: "G"
|
||
}
|
||
|
||
export default card |