1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 08:39:17 +00:00

feat: Add support for Asians Pokémon Cards (#481)

This commit is contained in:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

55
data-asia/SV/SVDs/012.ts Normal file
View File

@ -0,0 +1,55 @@
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