-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkits.js
More file actions
45 lines (45 loc) 路 1.37 KB
/
Copy pathkits.js
File metadata and controls
45 lines (45 loc) 路 1.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
const KITS = [
{
id: 'starter',
name: 'STARTER KIT',
price: '$5.00',
image: 'https://files.facepunch.com/rust/item/stone.pickaxe_512.png', // 脰rnek Resim
tebexPackageId: 'https://basicrustsitestore.tebex.io/package/123456',
contents: [
"1x Stone Hatchet",
"1x Stone Pickaxe",
"1000x Wood",
"50x Scrap"
],
color: '#5ce65c' // Ye艧il (Green)
},
{
id: 'vip',
name: 'VIP KIT',
price: '$10.00',
image: 'https://files.facepunch.com/rust/item/rifle.ak_512.png',
tebexPackageId: 'https://basicrustsitestore.tebex.io/package/654321',
contents: [
"1x Assault Rifle (AK-47)",
"1x Metal Chestplate",
"1x Metal Facemask",
"4x Syringe",
"Skip Queue"
],
color: '#f1c40f' // Alt谋n (Gold)
},
{
id: 'raider',
name: 'RAIDER KIT',
price: '$25.00',
image: 'https://files.facepunch.com/rust/item/ammo.rocket.basic_512.png',
tebexPackageId: 'https://basicrustsitestore.tebex.io/package/987654',
contents: [
"10x C4 Explosive",
"1x Rocket Launcher",
"50x High Velocity Rocket",
"Full Metal Gear Set"
],
color: '#e74c3c' // K谋rm谋z谋 (Tehlikeli)
}
];