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
|
/* ShiftOS Loot data file
*
* This file contains information about all loot in the game's campaign.
*
*/
[
{
FriendlyName: "Force Heartbeat",
LootName: "sploitset_keepalive.stp",
Rarity: 1,
PointTo: "sploitset_keepalive",
ID: "sploitset_keepalive"
},
{
FriendlyName: "Banana Cow",
LootName: "banana.cow.stp",
Rarity: 1,
PointTo: "banana_cow_stp",
},
{
FriendlyName: "Fire Hydrant Cow",
LootName: "fire hydrant.cow.stp",
Rarity: 1,
PointTo: "fire_hydrant_cow_stp",
},
{
FriendlyName: "SSHardline",
LootName: "sploitset_sshardline.stp",
Rarity: 1,
PointTo: "sploitset_sshardline",
ID: "sploitset_keepalive"
},
{
FriendlyName: "Pong",
LootName: "pong.stp",
Rarity: 10, //Easter egg.
PointTo: "pong",
ID: "pong"
}]
|