update to 1.4.4
This commit is contained in:
parent
8948bd232d
commit
2baa5388d5
6
.gitignore
vendored
6
.gitignore
vendored
@ -5,4 +5,8 @@
|
||||
*.mrpack
|
||||
|
||||
# Exclude packwiz binary
|
||||
packwiz.exe
|
||||
packwiz.exe
|
||||
|
||||
# Exclude this script or something
|
||||
updates.txt
|
||||
update.ps1
|
||||
|
@ -2,4 +2,8 @@
|
||||
# See https://git-scm.com/docs/gitignore
|
||||
|
||||
# Exclude README
|
||||
/README.md
|
||||
/README.md
|
||||
|
||||
# Exclude this script or something
|
||||
updates.txt
|
||||
update.ps1
|
||||
|
@ -32,6 +32,8 @@
|
||||
"movement_speed_effected_while_mounting": false,
|
||||
// Attacks faster than a vanilla sword will do smaller knockback, proportionally.
|
||||
"knockback_reduced_for_fast_attacks": true,
|
||||
// Combo is reset after idling `combo_reset_rate * weapon_cooldown`
|
||||
"combo_reset_rate": 3.0,
|
||||
// Multiplier for `attack_range`, during target lookup on both sides. Large sized entities may be colliding with weapon hitbox, but center of entities can have bigger distance than `attack_range`
|
||||
"target_search_range_multiplier": 3.5,
|
||||
// Total multiplier, (examples: +30% = 1.3, -30% = 0.7)
|
||||
|
2
config/betterfortresses-fabric-1_19.toml
Normal file
2
config/betterfortresses-fabric-1_19.toml
Normal file
@ -0,0 +1,2 @@
|
||||
[general]
|
||||
disableVanillaFortresses = true
|
8
config/betterfortresses/README.txt
Normal file
8
config/betterfortresses/README.txt
Normal file
@ -0,0 +1,8 @@
|
||||
This directory is for a few additional options for YUNG's Better Nether Fortresses.
|
||||
Options provided may vary by version.
|
||||
This directory contains subdirectories for supported versions. The first time you run Better Nether Fortresses, a version subdirectory will be created if that version supports advanced options.
|
||||
For example, the first time you use Better Nether Fortresses for MC 1.19.2 on Fabric, the 'fabric-1_19' subdirectory will be created in this folder.
|
||||
If no subdirectory for your version is created, then that version probably does not support the additional options.
|
||||
NOTE -- Most of this mod's config settings can be found in a config file outside this folder!
|
||||
For example, on Fabric 1.19.2 the file is 'betterfortresses-fabric-1_19.toml'.
|
||||
Also note that many of the structure's settings such as spawn rate & spawn conditions can only be modified via data pack.
|
26
config/betterfortresses/fabric-1_19/README.txt
Normal file
26
config/betterfortresses/fabric-1_19/README.txt
Normal file
@ -0,0 +1,26 @@
|
||||
######################################
|
||||
# itemframes.json #
|
||||
######################################
|
||||
This file contains ItemRandomizers describing the probability distribution of items in item frames.
|
||||
Item frames only spawn in certain rooms and hallway pieces.
|
||||
For information on ItemRandomizers, see the bottom of this README.
|
||||
######################################
|
||||
# ItemRandomizers #
|
||||
######################################
|
||||
Describes a set of items and the probability of each item being chosen.
|
||||
- entries: An object where each entry's key is an item, and each value is that item's probability of being chosen.
|
||||
The total sum of all probabilities SHOULD NOT exceed 1.0!
|
||||
- defaultItem: The item used for any leftover probability ranges.
|
||||
For example, if the total sum of all the probabilities of the entries is 0.6, then
|
||||
there is a 0.4 chance of the defaultItem being selected.
|
||||
Here's an example ItemRandomizer:
|
||||
{
|
||||
"entries": {
|
||||
"minecraft:cobblestone": 0.25,
|
||||
"minecraft:air": 0.2,
|
||||
"minecraft:stone_sword": 0.1
|
||||
},
|
||||
"defaultItem": "minecraft:iron_axe"
|
||||
}
|
||||
This randomizer has a 25% chance of returning cobblestone, 20% chance of choosing air,
|
||||
10% chance of choosing a stone sword, and a 100 - (25 + 20 + 10) = 45% chance of choosing iron axe (since it's the default item).
|
48
config/betterfortresses/fabric-1_19/itemframes.json
Normal file
48
config/betterfortresses/fabric-1_19/itemframes.json
Normal file
@ -0,0 +1,48 @@
|
||||
{
|
||||
"weaponItems": {
|
||||
"entries": {
|
||||
"stone_sword": 0.025,
|
||||
"golden_sword": 0.05,
|
||||
"netherite_sword": 0.005,
|
||||
"iron_axe": 0.025,
|
||||
"stone_axe": 0.025,
|
||||
"iron_sword": 0.025,
|
||||
"golden_axe": 0.05,
|
||||
"shield": 0.025
|
||||
},
|
||||
"defaultItem": "air"
|
||||
},
|
||||
"lootItems": {
|
||||
"entries": {
|
||||
"gold_nugget": 0.2,
|
||||
"gold_ingot": 0.1,
|
||||
"nether_wart": 0.1
|
||||
},
|
||||
"defaultItem": "air"
|
||||
},
|
||||
"studyItems": {
|
||||
"entries": {
|
||||
"paper": 0.1,
|
||||
"book": 0.4,
|
||||
"writable_book": 0.1,
|
||||
"enchanted_book": 0.1
|
||||
},
|
||||
"defaultItem": "air"
|
||||
},
|
||||
"messHallItems": {
|
||||
"entries": {
|
||||
"porkchop": 0.3,
|
||||
"cooked_porkchop": 0.3,
|
||||
"gold_ingot": 0.2
|
||||
},
|
||||
"defaultItem": "air"
|
||||
},
|
||||
"alchemyItems": {
|
||||
"entries": {
|
||||
"fire_charge": 0.2,
|
||||
"magma_cream": 0.3,
|
||||
"quartz": 0.3
|
||||
},
|
||||
"defaultItem": "air"
|
||||
}
|
||||
}
|
@ -7,7 +7,7 @@
|
||||
#'server_entry.title' for the config title;
|
||||
#'server_entry.description' for the config description.
|
||||
#
|
||||
#Fri Feb 17 20:13:18 CET 2023
|
||||
#Fri Mar 03 17:19:53 CET 2023
|
||||
partner_id=2567
|
||||
use_language_files=false
|
||||
pack_id=18425
|
||||
|
@ -2,8 +2,12 @@
|
||||
"badgeVisible": false,
|
||||
"builtinServers": [
|
||||
{
|
||||
"name": "TouhouDiscordcraft",
|
||||
"address": "mc.touhoudiscord.net:25566"
|
||||
"name": "Europe Central",
|
||||
"address": "aof6eu.alloffabric.com"
|
||||
},
|
||||
{
|
||||
"name": "North America",
|
||||
"address": "aof6na.alloffabric.com"
|
||||
}
|
||||
]
|
||||
}
|
Binary file not shown.
@ -3,6 +3,7 @@
|
||||
"animation_intensity": 0.75,
|
||||
"show_hearths": false,
|
||||
"damage_numbers": true,
|
||||
"full_bright_damage_numbers": true,
|
||||
"texture": "DEFAULT",
|
||||
"damage_number_colors": {
|
||||
"genetic": "ffffff",
|
||||
|
@ -1,5 +1,5 @@
|
||||
#Indigo properties file
|
||||
#Fri Feb 17 20:13:19 CET 2023
|
||||
#Fri Mar 03 17:19:54 CET 2023
|
||||
debug-compare-lighting=auto
|
||||
fix-exterior-vertex-lighting=auto
|
||||
ambient-occlusion-mode=hybrid
|
||||
|
@ -75,8 +75,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 11763949
|
||||
Loot: "aof:loot_bags/ad_astra/rare"
|
||||
Name: "Ad Astra! Rare Lootbag"
|
||||
Loot: "aof:loot_bags/ad_astra/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -111,8 +111,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 11763949
|
||||
Loot: "aof:loot_bags/ad_astra/common"
|
||||
Name: "Ad Astra! Common Lootbag"
|
||||
Loot: "aof:loot_bags/ad_astra/common"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -155,8 +155,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 11763949
|
||||
Loot: "aof:loot_bags/ad_astra/common"
|
||||
Name: "Ad Astra! Common Lootbag"
|
||||
Loot: "aof:loot_bags/ad_astra/common"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -239,8 +239,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 11763949
|
||||
Loot: "aof:loot_bags/ad_astra/common"
|
||||
Name: "Ad Astra! Common Lootbag"
|
||||
Loot: "aof:loot_bags/ad_astra/common"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -285,8 +285,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 11763949
|
||||
Loot: "aof:loot_bags/ad_astra/common"
|
||||
Name: "Ad Astra! Common Lootbag"
|
||||
Loot: "aof:loot_bags/ad_astra/common"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -316,8 +316,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 11763949
|
||||
Loot: "aof:loot_bags/ad_astra/common"
|
||||
Name: "Ad Astra! Common Lootbag"
|
||||
Loot: "aof:loot_bags/ad_astra/common"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -362,8 +362,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 11763949
|
||||
Loot: "aof:loot_bags/ad_astra/epic"
|
||||
Name: "Ad Astra! Epic Lootbag"
|
||||
Loot: "aof:loot_bags/ad_astra/epic"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -397,8 +397,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 11763949
|
||||
Loot: "aof:loot_bags/ad_astra/rare"
|
||||
Name: "Ad Astra! Rare Lootbag"
|
||||
Loot: "aof:loot_bags/ad_astra/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -430,8 +430,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 11763949
|
||||
Loot: "aof:loot_bags/ad_astra/rare"
|
||||
Name: "Ad Astra! Rare Lootbag"
|
||||
Loot: "aof:loot_bags/ad_astra/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -467,8 +467,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 11763949
|
||||
Loot: "aof:loot_bags/ad_astra/rare"
|
||||
Name: "Ad Astra! Rare Lootbag"
|
||||
Loot: "aof:loot_bags/ad_astra/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -500,8 +500,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 11763949
|
||||
Loot: "aof:loot_bags/ad_astra/rare"
|
||||
Name: "Ad Astra! Rare Lootbag"
|
||||
Loot: "aof:loot_bags/ad_astra/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -531,8 +531,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 11763949
|
||||
Loot: "aof:loot_bags/ad_astra/rare"
|
||||
Name: "Ad Astra! Rare Lootbag"
|
||||
Loot: "aof:loot_bags/ad_astra/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -569,8 +569,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 11763949
|
||||
Loot: "aof:loot_bags/ad_astra/rare"
|
||||
Name: "Ad Astra! Rare Lootbag"
|
||||
Loot: "aof:loot_bags/ad_astra/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -608,8 +608,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 11763949
|
||||
Loot: "aof:loot_bags/ad_astra/rare"
|
||||
Name: "Ad Astra! Rare Lootbag"
|
||||
Loot: "aof:loot_bags/ad_astra/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -636,8 +636,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 11763949
|
||||
Loot: "aof:loot_bags/ad_astra/epic"
|
||||
Name: "Ad Astra! Epic Lootbag"
|
||||
Loot: "aof:loot_bags/ad_astra/epic"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -682,8 +682,8 @@
|
||||
tag: {
|
||||
Type: "LEGENDARY"
|
||||
Color: 11763949
|
||||
Name: "Ad Astra! Legendary Lootbag"
|
||||
Loot: "aof:loot_bags/ad_astra/legendary"
|
||||
Name: "Ad Astra! Legendary Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -711,8 +711,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 11763949
|
||||
Loot: "aof:loot_bags/ad_astra/epic"
|
||||
Name: "Ad Astra! Epic Lootbag"
|
||||
Loot: "aof:loot_bags/ad_astra/epic"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -792,8 +792,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 11763949
|
||||
Loot: "aof:loot_bags/ad_astra/epic"
|
||||
Name: "Ad Astra! Epic Lootbag"
|
||||
Loot: "aof:loot_bags/ad_astra/epic"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -824,8 +824,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 11763949
|
||||
Loot: "aof:loot_bags/ad_astra/epic"
|
||||
Name: "Ad Astra! Epic Lootbag"
|
||||
Loot: "aof:loot_bags/ad_astra/epic"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -853,8 +853,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 11763949
|
||||
Loot: "aof:loot_bags/ad_astra/epic"
|
||||
Name: "Ad Astra! Epic Lootbag"
|
||||
Loot: "aof:loot_bags/ad_astra/epic"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -885,8 +885,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 11763949
|
||||
Loot: "aof:loot_bags/ad_astra/epic"
|
||||
Name: "Ad Astra! Epic Lootbag"
|
||||
Loot: "aof:loot_bags/ad_astra/epic"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -919,8 +919,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 11763949
|
||||
Loot: "aof:loot_bags/ad_astra/epic"
|
||||
Name: "Ad Astra! Epic Lootbag"
|
||||
Loot: "aof:loot_bags/ad_astra/epic"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -956,8 +956,8 @@
|
||||
tag: {
|
||||
Type: "LEGENDARY"
|
||||
Color: 11763949
|
||||
Name: "Ad Astra! Legendary Lootbag"
|
||||
Loot: "aof:loot_bags/ad_astra/legendary"
|
||||
Name: "Ad Astra! Legendary Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -985,8 +985,8 @@
|
||||
tag: {
|
||||
Type: "LEGENDARY"
|
||||
Color: 11763949
|
||||
Name: "Ad Astra! Legendary Lootbag"
|
||||
Loot: "aof:loot_bags/ad_astra/legendary"
|
||||
Name: "Ad Astra! Legendary Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1014,8 +1014,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 11763949
|
||||
Loot: "aof:loot_bags/ad_astra/common"
|
||||
Name: "Ad Astra! Common Lootbag"
|
||||
Loot: "aof:loot_bags/ad_astra/common"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1051,8 +1051,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 11763949
|
||||
Loot: "aof:loot_bags/ad_astra/common"
|
||||
Name: "Ad Astra! Common Lootbag"
|
||||
Loot: "aof:loot_bags/ad_astra/common"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1125,8 +1125,8 @@
|
||||
tag: {
|
||||
Type: "LEGENDARY"
|
||||
Color: 11763949
|
||||
Name: "Ad Astra! Legendary Lootbag"
|
||||
Loot: "aof:loot_bags/ad_astra/legendary"
|
||||
Name: "Ad Astra! Legendary Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
|
@ -90,8 +90,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -125,8 +125,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -165,8 +165,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -206,8 +206,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -240,8 +240,8 @@
|
||||
tag: {
|
||||
Type: "LEGENDARY"
|
||||
Color: 16103753
|
||||
Name: "Artifact Lootbag"
|
||||
Loot: "aof:loot_bags/misc/artifacts"
|
||||
Name: "Artifact Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -290,8 +290,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 11763949
|
||||
Name: "Ad Astra! Rare Lootbag"
|
||||
Loot: "aof:loot_bags/ad_astra/rare"
|
||||
Name: "Ad Astra! Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -344,8 +344,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -378,8 +378,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -415,8 +415,8 @@
|
||||
tag: {
|
||||
Type: "LEGENDARY"
|
||||
Color: 16103753
|
||||
Loot: "aof:loot_bags/misc/artifacts"
|
||||
Name: "Artifact Lootbag"
|
||||
Loot: "aof:loot_bags/misc/artifacts"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -444,8 +444,8 @@
|
||||
tag: {
|
||||
Type: "LEGENDARY"
|
||||
Color: 16103753
|
||||
Loot: "aof:loot_bags/misc/artifacts"
|
||||
Name: "Artifact Lootbag"
|
||||
Loot: "aof:loot_bags/misc/artifacts"
|
||||
}
|
||||
}
|
||||
}]
|
||||
|
@ -27,8 +27,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -52,8 +52,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -77,8 +77,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -102,8 +102,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -127,8 +127,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -152,8 +152,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -176,8 +176,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -201,8 +201,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -226,8 +226,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -251,8 +251,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -275,8 +275,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -299,8 +299,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -323,8 +323,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -347,8 +347,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -371,8 +371,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -403,8 +403,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -429,8 +429,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -470,8 +470,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -494,8 +494,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -518,8 +518,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -542,8 +542,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -566,8 +566,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -590,8 +590,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -614,8 +614,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -638,8 +638,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -662,8 +662,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -686,8 +686,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -710,8 +710,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -734,8 +734,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -758,8 +758,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -783,8 +783,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -808,8 +808,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -834,8 +834,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -860,8 +860,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -885,8 +885,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -910,8 +910,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -935,8 +935,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -961,8 +961,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -986,8 +986,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1011,8 +1011,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1036,8 +1036,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1082,8 +1082,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1128,8 +1128,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1174,8 +1174,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1219,8 +1219,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1264,8 +1264,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1309,8 +1309,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1354,8 +1354,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1400,8 +1400,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1425,8 +1425,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1470,8 +1470,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1495,8 +1495,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1520,8 +1520,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1545,8 +1545,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1570,8 +1570,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1595,8 +1595,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1620,8 +1620,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1645,8 +1645,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1670,8 +1670,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1695,8 +1695,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1721,8 +1721,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1746,8 +1746,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1770,8 +1770,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1795,8 +1795,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1820,8 +1820,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1851,8 +1851,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1882,8 +1882,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1913,8 +1913,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1944,8 +1944,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1975,8 +1975,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2000,8 +2000,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2025,8 +2025,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2050,8 +2050,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2082,8 +2082,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2106,8 +2106,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2130,8 +2130,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2154,8 +2154,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2178,8 +2178,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2202,8 +2202,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2226,8 +2226,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2250,8 +2250,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2274,8 +2274,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2308,8 +2308,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2332,8 +2332,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2356,8 +2356,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2380,8 +2380,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2404,8 +2404,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2428,8 +2428,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2461,8 +2461,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2486,8 +2486,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2524,8 +2524,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2551,8 +2551,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2593,8 +2593,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2624,8 +2624,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2650,8 +2650,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2677,8 +2677,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2707,8 +2707,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2736,8 +2736,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2765,8 +2765,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2794,8 +2794,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2847,8 +2847,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2876,8 +2876,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2921,8 +2921,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2947,8 +2947,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2989,8 +2989,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
}
|
||||
}
|
||||
}]
|
||||
|
@ -39,8 +39,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -72,8 +72,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -98,8 +98,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -129,8 +129,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -155,8 +155,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -189,8 +189,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -217,8 +217,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -243,8 +243,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -274,8 +274,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -315,8 +315,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -341,8 +341,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -380,8 +380,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -409,8 +409,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -436,8 +436,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -471,8 +471,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -506,8 +506,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -541,8 +541,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -576,8 +576,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -614,8 +614,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -645,8 +645,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -671,8 +671,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -698,8 +698,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -724,8 +724,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -750,8 +750,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -776,8 +776,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -802,8 +802,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -828,8 +828,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -853,8 +853,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -878,8 +878,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -903,8 +903,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -942,8 +942,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -967,8 +967,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1000,8 +1000,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1026,8 +1026,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1052,8 +1052,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1089,8 +1089,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1120,8 +1120,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1147,8 +1147,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1221,8 +1221,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
}
|
||||
}
|
||||
}]
|
||||
|
@ -72,8 +72,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 16747259
|
||||
Name: "Magic Common Lootbag"
|
||||
Loot: "aof:loot_bags/magic/common"
|
||||
Name: "Magic Common Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -108,8 +108,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 16747259
|
||||
Name: "Magic Common Lootbag"
|
||||
Loot: "aof:loot_bags/magic/common"
|
||||
Name: "Magic Common Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -133,8 +133,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 16747259
|
||||
Name: "Magic Common Lootbag"
|
||||
Loot: "aof:loot_bags/magic/common"
|
||||
Name: "Magic Common Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -158,8 +158,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 16747259
|
||||
Name: "Magic Common Lootbag"
|
||||
Loot: "aof:loot_bags/magic/common"
|
||||
Name: "Magic Common Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -189,8 +189,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 16747259
|
||||
Name: "Magic Common Lootbag"
|
||||
Loot: "aof:loot_bags/magic/common"
|
||||
Name: "Magic Common Lootbag"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -215,8 +215,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 16747259
|
||||
Name: "Magic Common Lootbag"
|
||||
Loot: "aof:loot_bags/magic/common"
|
||||
Name: "Magic Common Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -240,8 +240,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 16747259
|
||||
Name: "Magic Common Lootbag"
|
||||
Loot: "aof:loot_bags/magic/common"
|
||||
Name: "Magic Common Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -265,8 +265,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 16747259
|
||||
Name: "Magic Common Lootbag"
|
||||
Loot: "aof:loot_bags/magic/common"
|
||||
Name: "Magic Common Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -302,8 +302,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 16747259
|
||||
Name: "Magic Common Lootbag"
|
||||
Loot: "aof:loot_bags/magic/common"
|
||||
Name: "Magic Common Lootbag"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -334,8 +334,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 16747259
|
||||
Name: "Magic Common Lootbag"
|
||||
Loot: "aof:loot_bags/magic/common"
|
||||
Name: "Magic Common Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -365,8 +365,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 16747259
|
||||
Name: "Magic Common Lootbag"
|
||||
Loot: "aof:loot_bags/magic/common"
|
||||
Name: "Magic Common Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -396,8 +396,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 16747259
|
||||
Name: "Magic Common Lootbag"
|
||||
Loot: "aof:loot_bags/magic/common"
|
||||
Name: "Magic Common Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -427,8 +427,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 16747259
|
||||
Name: "Magic Common Lootbag"
|
||||
Loot: "aof:loot_bags/magic/common"
|
||||
Name: "Magic Common Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -458,8 +458,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 16747259
|
||||
Name: "Magic Common Lootbag"
|
||||
Loot: "aof:loot_bags/magic/common"
|
||||
Name: "Magic Common Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -489,8 +489,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 16747259
|
||||
Name: "Magic Common Lootbag"
|
||||
Loot: "aof:loot_bags/magic/common"
|
||||
Name: "Magic Common Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -520,8 +520,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 16747259
|
||||
Name: "Magic Common Lootbag"
|
||||
Loot: "aof:loot_bags/magic/common"
|
||||
Name: "Magic Common Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -551,8 +551,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 16747259
|
||||
Name: "Magic Common Lootbag"
|
||||
Loot: "aof:loot_bags/magic/common"
|
||||
Name: "Magic Common Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -582,8 +582,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 16747259
|
||||
Name: "Magic Common Lootbag"
|
||||
Loot: "aof:loot_bags/magic/common"
|
||||
Name: "Magic Common Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -621,8 +621,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 16747259
|
||||
Name: "Magic Common Lootbag"
|
||||
Loot: "aof:loot_bags/magic/common"
|
||||
Name: "Magic Common Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -647,8 +647,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16747259
|
||||
Name: "Magic Rare Lootbag"
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
Name: "Magic Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -674,8 +674,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 16747259
|
||||
Name: "Magic Common Lootbag"
|
||||
Loot: "aof:loot_bags/magic/common"
|
||||
Name: "Magic Common Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -707,8 +707,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 16747259
|
||||
Name: "Magic Common Lootbag"
|
||||
Loot: "aof:loot_bags/magic/common"
|
||||
Name: "Magic Common Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -752,8 +752,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 16747259
|
||||
Name: "Magic Common Lootbag"
|
||||
Loot: "aof:loot_bags/magic/common"
|
||||
Name: "Magic Common Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -785,8 +785,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16747259
|
||||
Name: "Magic Rare Lootbag"
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
Name: "Magic Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -819,8 +819,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 16747259
|
||||
Name: "Magic Common Lootbag"
|
||||
Loot: "aof:loot_bags/magic/common"
|
||||
Name: "Magic Common Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -847,8 +847,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16747259
|
||||
Name: "Magic Rare Lootbag"
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
Name: "Magic Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -904,8 +904,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16747259
|
||||
Name: "Magic Rare Lootbag"
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
Name: "Magic Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -938,8 +938,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16747259
|
||||
Name: "Magic Rare Lootbag"
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
Name: "Magic Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -977,8 +977,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16747259
|
||||
Name: "Magic Rare Lootbag"
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
Name: "Magic Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1002,8 +1002,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16747259
|
||||
Name: "Magic Rare Lootbag"
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
Name: "Magic Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1039,8 +1039,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16747259
|
||||
Name: "Magic Rare Lootbag"
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
Name: "Magic Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1076,8 +1076,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16747259
|
||||
Name: "Magic Rare Lootbag"
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
Name: "Magic Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1113,8 +1113,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16747259
|
||||
Name: "Magic Rare Lootbag"
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
Name: "Magic Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1141,8 +1141,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16747259
|
||||
Name: "Magic Rare Lootbag"
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
Name: "Magic Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -35,8 +35,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 15576960
|
||||
Loot: "aof:loot_bags/create/common"
|
||||
Name: "Create Common Lootbag"
|
||||
Loot: "aof:loot_bags/create/common"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -65,8 +65,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 15576960
|
||||
Loot: "aof:loot_bags/create/common"
|
||||
Name: "Create Common Lootbag"
|
||||
Loot: "aof:loot_bags/create/common"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -102,8 +102,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 15576960
|
||||
Loot: "aof:loot_bags/create/common"
|
||||
Name: "Create Common Lootbag"
|
||||
Loot: "aof:loot_bags/create/common"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -140,8 +140,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 15576960
|
||||
Loot: "aof:loot_bags/create/common"
|
||||
Name: "Create Common Lootbag"
|
||||
Loot: "aof:loot_bags/create/common"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -179,8 +179,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 15576960
|
||||
Loot: "aof:loot_bags/create/common"
|
||||
Name: "Create Common Lootbag"
|
||||
Loot: "aof:loot_bags/create/common"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -221,8 +221,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 15576960
|
||||
Loot: "aof:loot_bags/create/common"
|
||||
Name: "Create Common Lootbag"
|
||||
Loot: "aof:loot_bags/create/common"
|
||||
}
|
||||
}
|
||||
count: 2
|
||||
@ -256,8 +256,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 15576960
|
||||
Loot: "aof:loot_bags/create/common"
|
||||
Name: "Create Common Lootbag"
|
||||
Loot: "aof:loot_bags/create/common"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -305,8 +305,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 15576960
|
||||
Loot: "aof:loot_bags/create/common"
|
||||
Name: "Create Common Lootbag"
|
||||
Loot: "aof:loot_bags/create/common"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -345,8 +345,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 15576960
|
||||
Loot: "aof:loot_bags/create/common"
|
||||
Name: "Create Common Lootbag"
|
||||
Loot: "aof:loot_bags/create/common"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -432,8 +432,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 15576960
|
||||
Name: "Create Rare Lootbag"
|
||||
Loot: "aof:loot_bags/create/rare"
|
||||
Name: "Create Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -479,8 +479,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 15576960
|
||||
Name: "Create Rare Lootbag"
|
||||
Loot: "aof:loot_bags/create/rare"
|
||||
Name: "Create Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -525,8 +525,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 15576960
|
||||
Loot: "aof:loot_bags/create/common"
|
||||
Name: "Create Common Lootbag"
|
||||
Loot: "aof:loot_bags/create/common"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -560,8 +560,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 15576960
|
||||
Name: "Create Rare Lootbag"
|
||||
Loot: "aof:loot_bags/create/rare"
|
||||
Name: "Create Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -587,8 +587,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 15576960
|
||||
Loot: "aof:loot_bags/create/common"
|
||||
Name: "Create Common Lootbag"
|
||||
Loot: "aof:loot_bags/create/common"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -613,8 +613,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 15576960
|
||||
Name: "Create Rare Lootbag"
|
||||
Loot: "aof:loot_bags/create/rare"
|
||||
Name: "Create Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -638,8 +638,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 15576960
|
||||
Name: "Create Rare Lootbag"
|
||||
Loot: "aof:loot_bags/create/rare"
|
||||
Name: "Create Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -665,8 +665,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 15576960
|
||||
Loot: "aof:loot_bags/create/common"
|
||||
Name: "Create Common Lootbag"
|
||||
Loot: "aof:loot_bags/create/common"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -703,8 +703,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 15576960
|
||||
Loot: "aof:loot_bags/create/common"
|
||||
Name: "Create Common Lootbag"
|
||||
Loot: "aof:loot_bags/create/common"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -730,8 +730,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 15576960
|
||||
Name: "Create Rare Lootbag"
|
||||
Loot: "aof:loot_bags/create/rare"
|
||||
Name: "Create Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -764,8 +764,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 15576960
|
||||
Loot: "aof:loot_bags/create/common"
|
||||
Name: "Create Common Lootbag"
|
||||
Loot: "aof:loot_bags/create/common"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -810,8 +810,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 15576960
|
||||
Loot: "aof:loot_bags/create/common"
|
||||
Name: "Create Common Lootbag"
|
||||
Loot: "aof:loot_bags/create/common"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -839,8 +839,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 15576960
|
||||
Loot: "aof:loot_bags/create/common"
|
||||
Name: "Create Common Lootbag"
|
||||
Loot: "aof:loot_bags/create/common"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -874,8 +874,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 15576960
|
||||
Loot: "aof:loot_bags/create/common"
|
||||
Name: "Create Common Lootbag"
|
||||
Loot: "aof:loot_bags/create/common"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -908,8 +908,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 15576960
|
||||
Loot: "aof:loot_bags/create/common"
|
||||
Name: "Create Common Lootbag"
|
||||
Loot: "aof:loot_bags/create/common"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -934,8 +934,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 15576960
|
||||
Name: "Create Rare Lootbag"
|
||||
Loot: "aof:loot_bags/create/rare"
|
||||
Name: "Create Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -967,8 +967,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 15576960
|
||||
Loot: "aof:loot_bags/create/epic"
|
||||
Name: "Create Epic Lootbag"
|
||||
Loot: "aof:loot_bags/create/epic"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -1000,8 +1000,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 15576960
|
||||
Loot: "aof:loot_bags/create/epic"
|
||||
Name: "Create Epic Lootbag"
|
||||
Loot: "aof:loot_bags/create/epic"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -1039,8 +1039,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 15576960
|
||||
Name: "Create Rare Lootbag"
|
||||
Loot: "aof:loot_bags/create/rare"
|
||||
Name: "Create Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -1081,8 +1081,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 15576960
|
||||
Name: "Create Rare Lootbag"
|
||||
Loot: "aof:loot_bags/create/rare"
|
||||
Name: "Create Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -1108,8 +1108,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 15576960
|
||||
Loot: "aof:loot_bags/create/common"
|
||||
Name: "Create Common Lootbag"
|
||||
Loot: "aof:loot_bags/create/common"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1134,8 +1134,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 15576960
|
||||
Loot: "aof:loot_bags/create/common"
|
||||
Name: "Create Common Lootbag"
|
||||
Loot: "aof:loot_bags/create/common"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1190,8 +1190,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 15576960
|
||||
Name: "Create Rare Lootbag"
|
||||
Loot: "aof:loot_bags/create/rare"
|
||||
Name: "Create Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -1216,8 +1216,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 15576960
|
||||
Loot: "aof:loot_bags/create/epic"
|
||||
Name: "Create Epic Lootbag"
|
||||
Loot: "aof:loot_bags/create/epic"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1255,8 +1255,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 15576960
|
||||
Loot: "aof:loot_bags/create/epic"
|
||||
Name: "Create Epic Lootbag"
|
||||
Loot: "aof:loot_bags/create/epic"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -1282,8 +1282,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 15576960
|
||||
Name: "Create Rare Lootbag"
|
||||
Loot: "aof:loot_bags/create/rare"
|
||||
Name: "Create Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1307,8 +1307,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 15576960
|
||||
Name: "Create Rare Lootbag"
|
||||
Loot: "aof:loot_bags/create/rare"
|
||||
Name: "Create Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1332,8 +1332,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 15576960
|
||||
Loot: "aof:loot_bags/create/common"
|
||||
Name: "Create Common Lootbag"
|
||||
Loot: "aof:loot_bags/create/common"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1358,8 +1358,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 15576960
|
||||
Loot: "aof:loot_bags/create/common"
|
||||
Name: "Create Common Lootbag"
|
||||
Loot: "aof:loot_bags/create/common"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1384,8 +1384,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 15576960
|
||||
Name: "Create Rare Lootbag"
|
||||
Loot: "aof:loot_bags/create/rare"
|
||||
Name: "Create Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1410,8 +1410,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 15576960
|
||||
Name: "Create Rare Lootbag"
|
||||
Loot: "aof:loot_bags/create/rare"
|
||||
Name: "Create Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1436,8 +1436,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 15576960
|
||||
Loot: "aof:loot_bags/create/epic"
|
||||
Name: "Create Epic Lootbag"
|
||||
Loot: "aof:loot_bags/create/epic"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1468,8 +1468,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 15576960
|
||||
Loot: "aof:loot_bags/create/epic"
|
||||
Name: "Create Epic Lootbag"
|
||||
Loot: "aof:loot_bags/create/epic"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1501,8 +1501,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 15576960
|
||||
Loot: "aof:loot_bags/create/common"
|
||||
Name: "Create Common Lootbag"
|
||||
Loot: "aof:loot_bags/create/common"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1541,8 +1541,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 15576960
|
||||
Loot: "aof:loot_bags/create/common"
|
||||
Name: "Create Common Lootbag"
|
||||
Loot: "aof:loot_bags/create/common"
|
||||
}
|
||||
}
|
||||
count: 2
|
||||
@ -1569,8 +1569,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 15576960
|
||||
Loot: "aof:loot_bags/create/common"
|
||||
Name: "Create Common Lootbag"
|
||||
Loot: "aof:loot_bags/create/common"
|
||||
}
|
||||
}
|
||||
count: 2
|
||||
@ -1604,8 +1604,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 15576960
|
||||
Loot: "aof:loot_bags/create/common"
|
||||
Name: "Create Common Lootbag"
|
||||
Loot: "aof:loot_bags/create/common"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -1653,8 +1653,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 15576960
|
||||
Name: "Create Rare Lootbag"
|
||||
Loot: "aof:loot_bags/create/rare"
|
||||
Name: "Create Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1685,8 +1685,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 15576960
|
||||
Loot: "aof:loot_bags/create/common"
|
||||
Name: "Create Common Lootbag"
|
||||
Loot: "aof:loot_bags/create/common"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1710,8 +1710,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 15576960
|
||||
Loot: "aof:loot_bags/create/common"
|
||||
Name: "Create Common Lootbag"
|
||||
Loot: "aof:loot_bags/create/common"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1742,8 +1742,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 15576960
|
||||
Name: "Create Rare Lootbag"
|
||||
Loot: "aof:loot_bags/create/rare"
|
||||
Name: "Create Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1767,8 +1767,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 15576960
|
||||
Loot: "aof:loot_bags/create/common"
|
||||
Name: "Create Common Lootbag"
|
||||
Loot: "aof:loot_bags/create/common"
|
||||
}
|
||||
}
|
||||
count: 2
|
||||
@ -1803,8 +1803,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 15576960
|
||||
Loot: "aof:loot_bags/create/common"
|
||||
Name: "Create Common Lootbag"
|
||||
Loot: "aof:loot_bags/create/common"
|
||||
}
|
||||
}
|
||||
count: 2
|
||||
@ -1830,8 +1830,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 15576960
|
||||
Loot: "aof:loot_bags/create/common"
|
||||
Name: "Create Common Lootbag"
|
||||
Loot: "aof:loot_bags/create/common"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1856,8 +1856,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 15576960
|
||||
Name: "Create Rare Lootbag"
|
||||
Loot: "aof:loot_bags/create/rare"
|
||||
Name: "Create Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1881,8 +1881,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 15576960
|
||||
Loot: "aof:loot_bags/create/epic"
|
||||
Name: "Create Epic Lootbag"
|
||||
Loot: "aof:loot_bags/create/epic"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1937,8 +1937,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 15576960
|
||||
Loot: "aof:loot_bags/create/common"
|
||||
Name: "Create Common Lootbag"
|
||||
Loot: "aof:loot_bags/create/common"
|
||||
}
|
||||
}
|
||||
count: 2
|
||||
@ -1963,8 +1963,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 15576960
|
||||
Loot: "aof:loot_bags/create/epic"
|
||||
Name: "Create Epic Lootbag"
|
||||
Loot: "aof:loot_bags/create/epic"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1997,8 +1997,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 15576960
|
||||
Loot: "aof:loot_bags/create/epic"
|
||||
Name: "Create Epic Lootbag"
|
||||
Loot: "aof:loot_bags/create/epic"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -2049,8 +2049,8 @@
|
||||
tag: {
|
||||
Type: "LEGENDARY"
|
||||
Color: 15576960
|
||||
Loot: "aof:loot_bags/create/legendary"
|
||||
Name: "Create Legendary Lootbag"
|
||||
Loot: "aof:loot_bags/create/legendary"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -2087,8 +2087,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 15576960
|
||||
Loot: "aof:loot_bags/create/common"
|
||||
Name: "Create Common Lootbag"
|
||||
Loot: "aof:loot_bags/create/common"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -2113,8 +2113,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 15576960
|
||||
Loot: "aof:loot_bags/create/common"
|
||||
Name: "Create Common Lootbag"
|
||||
Loot: "aof:loot_bags/create/common"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2140,8 +2140,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 15576960
|
||||
Name: "Create Rare Lootbag"
|
||||
Loot: "aof:loot_bags/create/rare"
|
||||
Name: "Create Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2169,8 +2169,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 15576960
|
||||
Loot: "aof:loot_bags/create/common"
|
||||
Name: "Create Common Lootbag"
|
||||
Loot: "aof:loot_bags/create/common"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2194,8 +2194,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 15576960
|
||||
Loot: "aof:loot_bags/create/epic"
|
||||
Name: "Create Epic Lootbag"
|
||||
Loot: "aof:loot_bags/create/epic"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2230,8 +2230,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 15576960
|
||||
Loot: "aof:loot_bags/create/common"
|
||||
Name: "Create Common Lootbag"
|
||||
Loot: "aof:loot_bags/create/common"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -2268,8 +2268,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 15576960
|
||||
Name: "Create Rare Lootbag"
|
||||
Loot: "aof:loot_bags/create/rare"
|
||||
Name: "Create Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2301,8 +2301,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 15576960
|
||||
Name: "Create Rare Lootbag"
|
||||
Loot: "aof:loot_bags/create/rare"
|
||||
Name: "Create Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -2340,8 +2340,8 @@
|
||||
tag: {
|
||||
Type: "LEGENDARY"
|
||||
Color: 15576960
|
||||
Loot: "aof:loot_bags/create/legendary"
|
||||
Name: "Create Legendary Lootbag"
|
||||
Loot: "aof:loot_bags/create/legendary"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -66,8 +66,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -105,8 +105,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -142,8 +142,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -185,8 +185,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -222,8 +222,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -258,8 +258,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -283,48 +283,48 @@
|
||||
items: [
|
||||
{
|
||||
id: "dml-refabricated:data_model_illager"
|
||||
Count: 1b
|
||||
tag: { }
|
||||
Count: 1b
|
||||
}
|
||||
{
|
||||
id: "dml-refabricated:data_model_ocean"
|
||||
Count: 1b
|
||||
tag: { }
|
||||
Count: 1b
|
||||
}
|
||||
{
|
||||
id: "dml-refabricated:data_model_slimy"
|
||||
Count: 1b
|
||||
tag: { }
|
||||
Count: 1b
|
||||
}
|
||||
{
|
||||
id: "dml-refabricated:data_model_overworld"
|
||||
Count: 1b
|
||||
tag: { }
|
||||
Count: 1b
|
||||
}
|
||||
{
|
||||
id: "dml-refabricated:data_model_zombie"
|
||||
Count: 1b
|
||||
tag: { }
|
||||
Count: 1b
|
||||
}
|
||||
{
|
||||
id: "dml-refabricated:data_model_nether"
|
||||
Count: 1b
|
||||
tag: { }
|
||||
Count: 1b
|
||||
}
|
||||
{
|
||||
id: "dml-refabricated:data_model_skeleton"
|
||||
Count: 1b
|
||||
tag: { }
|
||||
Count: 1b
|
||||
}
|
||||
{
|
||||
id: "dml-refabricated:data_model_end"
|
||||
Count: 1b
|
||||
tag: { }
|
||||
Count: 1b
|
||||
}
|
||||
{
|
||||
id: "dml-refabricated:data_model_ghost"
|
||||
Count: 1b
|
||||
tag: { }
|
||||
Count: 1b
|
||||
}
|
||||
]
|
||||
}
|
||||
@ -339,8 +339,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -380,8 +380,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -413,8 +413,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -439,8 +439,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
|
@ -48,7 +48,7 @@
|
||||
{
|
||||
title: "&bExcavate"
|
||||
x: 10.0d
|
||||
y: 0.0d
|
||||
y: 0.5d
|
||||
subtitle: "Ores Be Gone!"
|
||||
description: [
|
||||
"&bExcavate &ris by default bound to keybind \"&6Grave&r\""
|
||||
@ -74,7 +74,7 @@
|
||||
title: "&9Learning Mods"
|
||||
icon: "techreborn:wrench"
|
||||
x: 5.0d
|
||||
y: 0.0d
|
||||
y: 0.5d
|
||||
subtitle: "Feel lost? Do not worry!"
|
||||
description: [
|
||||
"Mods are split into 4 categories:"
|
||||
@ -104,7 +104,7 @@
|
||||
tag: { }
|
||||
}
|
||||
x: 5.0d
|
||||
y: 4.0d
|
||||
y: 3.5d
|
||||
subtitle: "If you truly love nature, you will find beauty everywhere."
|
||||
description: [
|
||||
"Dont feel like &6running &rthousands of blocks for that favorite biome of yours?"
|
||||
@ -156,7 +156,7 @@
|
||||
{
|
||||
title: "&3Don't be a tourist, be a traveler"
|
||||
x: 10.0d
|
||||
y: 4.0d
|
||||
y: 3.5d
|
||||
subtitle: "Inventory cramped? Fear not!"
|
||||
description: [
|
||||
"The &bTraveler's Backpack &rcan provide about 45 inventory slots and 2 fluid tanks, which each can store up to 4 buckets of fluid or even 16 bottles of potions."
|
||||
@ -185,8 +185,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
}
|
||||
}
|
||||
}]
|
||||
|
@ -68,8 +68,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/magic/common"
|
||||
Name: "Magic Common Lootbag"
|
||||
Loot: "aof:loot_bags/magic/common"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -104,8 +104,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
Name: "Magic Rare Lootbag"
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -149,8 +149,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
Name: "Magic Rare Lootbag"
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -191,8 +191,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/magic/epic"
|
||||
Name: "Magic Epic Lootbag"
|
||||
Loot: "aof:loot_bags/magic/epic"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -226,8 +226,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/magic/common"
|
||||
Name: "Magic Common Lootbag"
|
||||
Loot: "aof:loot_bags/magic/common"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -255,8 +255,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/magic/common"
|
||||
Name: "Magic Common Lootbag"
|
||||
Loot: "aof:loot_bags/magic/common"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -288,8 +288,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
Name: "Magic Rare Lootbag"
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -322,8 +322,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
Name: "Magic Rare Lootbag"
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
|
@ -53,8 +53,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 8090608
|
||||
Loot: "aof:loot_bags/ind_rev/common"
|
||||
Name: "Industrial Revolution Common Lootbag"
|
||||
Loot: "aof:loot_bags/ind_rev/common"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -79,8 +79,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 8090608
|
||||
Loot: "aof:loot_bags/ind_rev/common"
|
||||
Name: "Industrial Revolution Common Lootbag"
|
||||
Loot: "aof:loot_bags/ind_rev/common"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -108,8 +108,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 8090608
|
||||
Name: "Industrial Revolution Rare Lootbag"
|
||||
Loot: "aof:loot_bags/ind_rev/rare"
|
||||
Name: "Industrial Revolution Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -137,8 +137,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 8090608
|
||||
Name: "Industrial Revolution Rare Lootbag"
|
||||
Loot: "aof:loot_bags/ind_rev/rare"
|
||||
Name: "Industrial Revolution Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -166,8 +166,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 8090608
|
||||
Name: "Industrial Revolution Rare Lootbag"
|
||||
Loot: "aof:loot_bags/ind_rev/rare"
|
||||
Name: "Industrial Revolution Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -198,8 +198,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 8090608
|
||||
Loot: "aof:loot_bags/ind_rev/common"
|
||||
Name: "Industrial Revolution Common Lootbag"
|
||||
Loot: "aof:loot_bags/ind_rev/common"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -224,8 +224,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 8090608
|
||||
Loot: "aof:loot_bags/ind_rev/common"
|
||||
Name: "Industrial Revolution Common Lootbag"
|
||||
Loot: "aof:loot_bags/ind_rev/common"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -250,8 +250,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 8090608
|
||||
Loot: "aof:loot_bags/ind_rev/common"
|
||||
Name: "Industrial Revolution Common Lootbag"
|
||||
Loot: "aof:loot_bags/ind_rev/common"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -276,8 +276,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 8090608
|
||||
Loot: "aof:loot_bags/ind_rev/common"
|
||||
Name: "Industrial Revolution Common Lootbag"
|
||||
Loot: "aof:loot_bags/ind_rev/common"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -302,8 +302,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 8090608
|
||||
Loot: "aof:loot_bags/ind_rev/rare"
|
||||
Name: "Industrial Revolution Rare Lootbag"
|
||||
Loot: "aof:loot_bags/ind_rev/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -335,8 +335,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 8090608
|
||||
Loot: "aof:loot_bags/ind_rev/common"
|
||||
Name: "Industrial Revolution Common Lootbag"
|
||||
Loot: "aof:loot_bags/ind_rev/common"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -366,8 +366,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 8090608
|
||||
Loot: "aof:loot_bags/ind_rev/common"
|
||||
Name: "Industrial Revolution Common Lootbag"
|
||||
Loot: "aof:loot_bags/ind_rev/common"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -392,8 +392,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 8090608
|
||||
Loot: "aof:loot_bags/ind_rev/common"
|
||||
Name: "Industrial Revolution Common Lootbag"
|
||||
Loot: "aof:loot_bags/ind_rev/common"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -426,8 +426,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 8090608
|
||||
Loot: "aof:loot_bags/ind_rev/common"
|
||||
Name: "Industrial Revolution Common Lootbag"
|
||||
Loot: "aof:loot_bags/ind_rev/common"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -494,8 +494,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 8090608
|
||||
Loot: "aof:loot_bags/ind_rev/common"
|
||||
Name: "Industrial Revolution Common Lootbag"
|
||||
Loot: "aof:loot_bags/ind_rev/common"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -520,8 +520,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 8090608
|
||||
Loot: "aof:loot_bags/ind_rev/common"
|
||||
Name: "Industrial Revolution Common Lootbag"
|
||||
Loot: "aof:loot_bags/ind_rev/common"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -547,8 +547,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 8090608
|
||||
Loot: "aof:loot_bags/ind_rev/common"
|
||||
Name: "Industrial Revolution Common Lootbag"
|
||||
Loot: "aof:loot_bags/ind_rev/common"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -574,8 +574,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 8090608
|
||||
Name: "Industrial Revolution Rare Lootbag"
|
||||
Loot: "aof:loot_bags/ind_rev/rare"
|
||||
Name: "Industrial Revolution Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -603,8 +603,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 8090608
|
||||
Name: "Industrial Revolution Rare Lootbag"
|
||||
Loot: "aof:loot_bags/ind_rev/rare"
|
||||
Name: "Industrial Revolution Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -629,8 +629,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 8090608
|
||||
Name: "Industrial Revolution Rare Lootbag"
|
||||
Loot: "aof:loot_bags/ind_rev/rare"
|
||||
Name: "Industrial Revolution Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -655,8 +655,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 8090608
|
||||
Loot: "aof:loot_bags/ind_rev/common"
|
||||
Name: "Industrial Revolution Common Lootbag"
|
||||
Loot: "aof:loot_bags/ind_rev/common"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -682,8 +682,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 8090608
|
||||
Loot: "aof:loot_bags/ind_rev/common"
|
||||
Name: "Industrial Revolution Common Lootbag"
|
||||
Loot: "aof:loot_bags/ind_rev/common"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -709,8 +709,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 8090608
|
||||
Name: "Industrial Revolution Rare Lootbag"
|
||||
Loot: "aof:loot_bags/ind_rev/rare"
|
||||
Name: "Industrial Revolution Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -734,8 +734,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 8090608
|
||||
Name: "Industrial Revolution Rare Lootbag"
|
||||
Loot: "aof:loot_bags/ind_rev/rare"
|
||||
Name: "Industrial Revolution Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -759,8 +759,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 8090608
|
||||
Name: "Industrial Revolution Rare Lootbag"
|
||||
Loot: "aof:loot_bags/ind_rev/rare"
|
||||
Name: "Industrial Revolution Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -785,8 +785,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 8090608
|
||||
Loot: "aof:loot_bags/ind_rev/common"
|
||||
Name: "Industrial Revolution Common Lootbag"
|
||||
Loot: "aof:loot_bags/ind_rev/common"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -843,8 +843,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 8090608
|
||||
Loot: "aof:loot_bags/ind_rev/common"
|
||||
Name: "Industrial Revolution Common Lootbag"
|
||||
Loot: "aof:loot_bags/ind_rev/common"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -890,8 +890,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 8090608
|
||||
Loot: "aof:loot_bags/ind_rev/common"
|
||||
Name: "Industrial Revolution Common Lootbag"
|
||||
Loot: "aof:loot_bags/ind_rev/common"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -972,8 +972,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 8090608
|
||||
Name: "Industrial Revolution Rare Lootbag"
|
||||
Loot: "aof:loot_bags/ind_rev/rare"
|
||||
Name: "Industrial Revolution Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -999,8 +999,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 8090608
|
||||
Loot: "aof:loot_bags/ind_rev/common"
|
||||
Name: "Industrial Revolution Common Lootbag"
|
||||
Loot: "aof:loot_bags/ind_rev/common"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1025,8 +1025,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 8090608
|
||||
Loot: "aof:loot_bags/ind_rev/common"
|
||||
Name: "Industrial Revolution Common Lootbag"
|
||||
Loot: "aof:loot_bags/ind_rev/common"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1050,8 +1050,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 8090608
|
||||
Loot: "aof:loot_bags/ind_rev/common"
|
||||
Name: "Industrial Revolution Common Lootbag"
|
||||
Loot: "aof:loot_bags/ind_rev/common"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1076,8 +1076,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 8090608
|
||||
Loot: "aof:loot_bags/ind_rev/common"
|
||||
Name: "Industrial Revolution Common Lootbag"
|
||||
Loot: "aof:loot_bags/ind_rev/common"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1107,8 +1107,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 8090608
|
||||
Loot: "aof:loot_bags/ind_rev/common"
|
||||
Name: "Industrial Revolution Common Lootbag"
|
||||
Loot: "aof:loot_bags/ind_rev/common"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1140,8 +1140,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 8090608
|
||||
Loot: "aof:loot_bags/ind_rev/common"
|
||||
Name: "Industrial Revolution Common Lootbag"
|
||||
Loot: "aof:loot_bags/ind_rev/common"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1202,8 +1202,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 8090608
|
||||
Loot: "aof:loot_bags/ind_rev/common"
|
||||
Name: "Industrial Revolution Common Lootbag"
|
||||
Loot: "aof:loot_bags/ind_rev/common"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1227,8 +1227,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 8090608
|
||||
Name: "Industrial Revolution Rare Lootbag"
|
||||
Loot: "aof:loot_bags/ind_rev/rare"
|
||||
Name: "Industrial Revolution Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1252,8 +1252,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 8090608
|
||||
Name: "Industrial Revolution Rare Lootbag"
|
||||
Loot: "aof:loot_bags/ind_rev/rare"
|
||||
Name: "Industrial Revolution Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1277,8 +1277,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 8090608
|
||||
Name: "Industrial Revolution Rare Lootbag"
|
||||
Loot: "aof:loot_bags/ind_rev/rare"
|
||||
Name: "Industrial Revolution Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1305,8 +1305,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 8090608
|
||||
Name: "Industrial Revolution Rare Lootbag"
|
||||
Loot: "aof:loot_bags/ind_rev/rare"
|
||||
Name: "Industrial Revolution Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1330,8 +1330,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 8090608
|
||||
Name: "Industrial Revolution Rare Lootbag"
|
||||
Loot: "aof:loot_bags/ind_rev/rare"
|
||||
Name: "Industrial Revolution Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1355,8 +1355,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 8090608
|
||||
Name: "Industrial Revolution Rare Lootbag"
|
||||
Loot: "aof:loot_bags/ind_rev/rare"
|
||||
Name: "Industrial Revolution Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1418,8 +1418,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 8090608
|
||||
Name: "Industrial Revolution Rare Lootbag"
|
||||
Loot: "aof:loot_bags/ind_rev/rare"
|
||||
Name: "Industrial Revolution Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -1458,8 +1458,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 8090608
|
||||
Name: "Industrial Revolution Rare Lootbag"
|
||||
Loot: "aof:loot_bags/ind_rev/rare"
|
||||
Name: "Industrial Revolution Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -1498,8 +1498,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 8090608
|
||||
Name: "Industrial Revolution Rare Lootbag"
|
||||
Loot: "aof:loot_bags/ind_rev/rare"
|
||||
Name: "Industrial Revolution Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -1538,8 +1538,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 8090608
|
||||
Name: "Industrial Revolution Rare Lootbag"
|
||||
Loot: "aof:loot_bags/ind_rev/rare"
|
||||
Name: "Industrial Revolution Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -1584,8 +1584,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 8090608
|
||||
Loot: "aof:loot_bags/ind_rev/common"
|
||||
Name: "Industrial Revolution Common Lootbag"
|
||||
Loot: "aof:loot_bags/ind_rev/common"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1642,8 +1642,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 8090608
|
||||
Name: "Industrial Revolution Rare Lootbag"
|
||||
Loot: "aof:loot_bags/ind_rev/rare"
|
||||
Name: "Industrial Revolution Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1668,8 +1668,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 8090608
|
||||
Name: "Industrial Revolution Rare Lootbag"
|
||||
Loot: "aof:loot_bags/ind_rev/rare"
|
||||
Name: "Industrial Revolution Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1700,8 +1700,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 8090608
|
||||
Name: "Industrial Revolution Rare Lootbag"
|
||||
Loot: "aof:loot_bags/ind_rev/rare"
|
||||
Name: "Industrial Revolution Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1726,8 +1726,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 8090608
|
||||
Name: "Industrial Revolution Rare Lootbag"
|
||||
Loot: "aof:loot_bags/ind_rev/rare"
|
||||
Name: "Industrial Revolution Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1753,8 +1753,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 8090608
|
||||
Name: "Industrial Revolution Rare Lootbag"
|
||||
Loot: "aof:loot_bags/ind_rev/rare"
|
||||
Name: "Industrial Revolution Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1780,8 +1780,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 8090608
|
||||
Name: "Industrial Revolution Rare Lootbag"
|
||||
Loot: "aof:loot_bags/ind_rev/rare"
|
||||
Name: "Industrial Revolution Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1807,8 +1807,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 8090608
|
||||
Name: "Industrial Revolution Rare Lootbag"
|
||||
Loot: "aof:loot_bags/ind_rev/rare"
|
||||
Name: "Industrial Revolution Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1852,8 +1852,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 8090608
|
||||
Name: "Industrial Revolution Rare Lootbag"
|
||||
Loot: "aof:loot_bags/ind_rev/rare"
|
||||
Name: "Industrial Revolution Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1878,8 +1878,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 8090608
|
||||
Name: "Industrial Revolution Rare Lootbag"
|
||||
Loot: "aof:loot_bags/ind_rev/rare"
|
||||
Name: "Industrial Revolution Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1925,8 +1925,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 8090608
|
||||
Name: "Industrial Revolution Rare Lootbag"
|
||||
Loot: "aof:loot_bags/ind_rev/rare"
|
||||
Name: "Industrial Revolution Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1951,8 +1951,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 8090608
|
||||
Loot: "aof:loot_bags/ind_rev/common"
|
||||
Name: "Industrial Revolution Common Lootbag"
|
||||
Loot: "aof:loot_bags/ind_rev/common"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1978,8 +1978,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 8090608
|
||||
Name: "Industrial Revolution Rare Lootbag"
|
||||
Loot: "aof:loot_bags/ind_rev/rare"
|
||||
Name: "Industrial Revolution Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2004,8 +2004,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 8090608
|
||||
Name: "Industrial Revolution Rare Lootbag"
|
||||
Loot: "aof:loot_bags/ind_rev/rare"
|
||||
Name: "Industrial Revolution Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
|
@ -33,8 +33,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 6750133
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
Name: "Utilities Lootbag"
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -57,8 +57,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 6750133
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
Name: "Utilities Lootbag"
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -82,8 +82,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 6750133
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
Name: "Utilities Lootbag"
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -107,8 +107,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 6750133
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
Name: "Utilities Lootbag"
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -133,8 +133,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 6750133
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
Name: "Utilities Lootbag"
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -158,8 +158,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 6750133
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
Name: "Utilities Lootbag"
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -182,8 +182,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 6750133
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
Name: "Utilities Lootbag"
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -207,8 +207,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 6750133
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
Name: "Utilities Lootbag"
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -232,8 +232,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 6750133
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
Name: "Utilities Lootbag"
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -257,8 +257,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 6750133
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
Name: "Utilities Lootbag"
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -282,8 +282,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 6750133
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
Name: "Utilities Lootbag"
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -308,8 +308,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 6750133
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
Name: "Utilities Lootbag"
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -334,8 +334,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 6750133
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
Name: "Utilities Lootbag"
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -360,8 +360,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 6750133
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
Name: "Utilities Lootbag"
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -386,8 +386,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 6750133
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
Name: "Utilities Lootbag"
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -416,8 +416,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 6750133
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
Name: "Utilities Lootbag"
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -446,8 +446,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 6750133
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
Name: "Utilities Lootbag"
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -497,8 +497,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 6750133
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
Name: "Utilities Lootbag"
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -549,8 +549,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 6750133
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
Name: "Utilities Lootbag"
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -601,8 +601,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 6750133
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
Name: "Utilities Lootbag"
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -647,8 +647,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 6750133
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
Name: "Utilities Lootbag"
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -703,8 +703,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 6750133
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
Name: "Utilities Lootbag"
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -730,8 +730,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 6750133
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
Name: "Utilities Lootbag"
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -760,8 +760,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 6750133
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
Name: "Utilities Lootbag"
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -786,8 +786,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 6750133
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
Name: "Utilities Lootbag"
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -811,8 +811,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 6750133
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
Name: "Utilities Lootbag"
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -836,8 +836,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 6750133
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
Name: "Utilities Lootbag"
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -861,8 +861,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 6750133
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
Name: "Utilities Lootbag"
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -886,8 +886,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 6750133
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
Name: "Utilities Lootbag"
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -912,8 +912,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 6750133
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
Name: "Utilities Lootbag"
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -938,8 +938,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 6750133
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
Name: "Utilities Lootbag"
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -968,8 +968,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 6750133
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
Name: "Utilities Lootbag"
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -998,8 +998,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 6750133
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
Name: "Utilities Lootbag"
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1028,8 +1028,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 6750133
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
Name: "Utilities Lootbag"
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1087,8 +1087,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 6750133
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
Name: "Utilities Lootbag"
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1113,8 +1113,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 6750133
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
Name: "Utilities Lootbag"
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1139,8 +1139,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 6750133
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
Name: "Utilities Lootbag"
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1165,8 +1165,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 6750133
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
Name: "Utilities Lootbag"
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1191,8 +1191,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 6750133
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
Name: "Utilities Lootbag"
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1217,8 +1217,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 6750133
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
Name: "Utilities Lootbag"
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1261,8 +1261,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 6750133
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
Name: "Utilities Lootbag"
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1291,8 +1291,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 6750133
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
Name: "Utilities Lootbag"
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1322,8 +1322,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 6750133
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
Name: "Utilities Lootbag"
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1347,8 +1347,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 6750133
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
Name: "Utilities Lootbag"
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1395,8 +1395,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 6750133
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
Name: "Utilities Lootbag"
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1420,8 +1420,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 6750133
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
Name: "Utilities Lootbag"
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1446,8 +1446,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 6750133
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
Name: "Utilities Lootbag"
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1471,8 +1471,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 6750133
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
Name: "Utilities Lootbag"
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1496,8 +1496,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 6750133
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
Name: "Utilities Lootbag"
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1521,8 +1521,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 6750133
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
Name: "Utilities Lootbag"
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1547,8 +1547,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 6750133
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
Name: "Utilities Lootbag"
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1572,8 +1572,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 6750133
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
Name: "Utilities Lootbag"
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1610,8 +1610,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 6750133
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
Name: "Utilities Lootbag"
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1636,8 +1636,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 6750133
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
Name: "Utilities Lootbag"
|
||||
Loot: "aof:loot_bags/misc/utilities"
|
||||
}
|
||||
}
|
||||
}]
|
||||
|
@ -115,8 +115,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 16425539
|
||||
Name: "Modern Industrialization Common Lootbag"
|
||||
Loot: "aof:loot_bags/mi/common"
|
||||
Name: "Modern Industrialization Common Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -146,8 +146,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 16425539
|
||||
Name: "Modern Industrialization Common Lootbag"
|
||||
Loot: "aof:loot_bags/mi/common"
|
||||
Name: "Modern Industrialization Common Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -183,8 +183,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 16425539
|
||||
Name: "Modern Industrialization Common Lootbag"
|
||||
Loot: "aof:loot_bags/mi/common"
|
||||
Name: "Modern Industrialization Common Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -245,8 +245,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 16425539
|
||||
Name: "Modern Industrialization Common Lootbag"
|
||||
Loot: "aof:loot_bags/mi/common"
|
||||
Name: "Modern Industrialization Common Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -277,8 +277,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 16425539
|
||||
Name: "Modern Industrialization Common Lootbag"
|
||||
Loot: "aof:loot_bags/mi/common"
|
||||
Name: "Modern Industrialization Common Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -346,8 +346,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 16425539
|
||||
Name: "Modern Industrialization Common Lootbag"
|
||||
Loot: "aof:loot_bags/mi/common"
|
||||
Name: "Modern Industrialization Common Lootbag"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -380,8 +380,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 16425539
|
||||
Name: "Modern Industrialization Common Lootbag"
|
||||
Loot: "aof:loot_bags/mi/common"
|
||||
Name: "Modern Industrialization Common Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -422,8 +422,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 16425539
|
||||
Name: "Modern Industrialization Common Lootbag"
|
||||
Loot: "aof:loot_bags/mi/common"
|
||||
Name: "Modern Industrialization Common Lootbag"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -450,8 +450,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 16425539
|
||||
Name: "Modern Industrialization Common Lootbag"
|
||||
Loot: "aof:loot_bags/mi/common"
|
||||
Name: "Modern Industrialization Common Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -522,8 +522,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 16425539
|
||||
Name: "Modern Industrialization Common Lootbag"
|
||||
Loot: "aof:loot_bags/mi/common"
|
||||
Name: "Modern Industrialization Common Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -568,8 +568,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 16425539
|
||||
Name: "Modern Industrialization Common Lootbag"
|
||||
Loot: "aof:loot_bags/mi/common"
|
||||
Name: "Modern Industrialization Common Lootbag"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -606,8 +606,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 16425539
|
||||
Name: "Modern Industrialization Common Lootbag"
|
||||
Loot: "aof:loot_bags/mi/common"
|
||||
Name: "Modern Industrialization Common Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -653,8 +653,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 16425539
|
||||
Name: "Modern Industrialization Common Lootbag"
|
||||
Loot: "aof:loot_bags/mi/common"
|
||||
Name: "Modern Industrialization Common Lootbag"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -690,8 +690,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 16425539
|
||||
Name: "Modern Industrialization Common Lootbag"
|
||||
Loot: "aof:loot_bags/mi/common"
|
||||
Name: "Modern Industrialization Common Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -738,8 +738,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 16425539
|
||||
Name: "Modern Industrialization Common Lootbag"
|
||||
Loot: "aof:loot_bags/mi/common"
|
||||
Name: "Modern Industrialization Common Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -792,8 +792,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 16425539
|
||||
Name: "Modern Industrialization Common Lootbag"
|
||||
Loot: "aof:loot_bags/mi/common"
|
||||
Name: "Modern Industrialization Common Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -820,8 +820,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 16425539
|
||||
Name: "Modern Industrialization Common Lootbag"
|
||||
Loot: "aof:loot_bags/mi/common"
|
||||
Name: "Modern Industrialization Common Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -873,8 +873,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 16425539
|
||||
Name: "Modern Industrialization Common Lootbag"
|
||||
Loot: "aof:loot_bags/mi/common"
|
||||
Name: "Modern Industrialization Common Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -910,8 +910,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 16425539
|
||||
Name: "Modern Industrialization Common Lootbag"
|
||||
Loot: "aof:loot_bags/mi/common"
|
||||
Name: "Modern Industrialization Common Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -955,8 +955,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 16425539
|
||||
Name: "Modern Industrialization Common Lootbag"
|
||||
Loot: "aof:loot_bags/mi/common"
|
||||
Name: "Modern Industrialization Common Lootbag"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -990,8 +990,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 16425539
|
||||
Name: "Modern Industrialization Common Lootbag"
|
||||
Loot: "aof:loot_bags/mi/common"
|
||||
Name: "Modern Industrialization Common Lootbag"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -1058,8 +1058,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 16425539
|
||||
Name: "Modern Industrialization Common Lootbag"
|
||||
Loot: "aof:loot_bags/mi/common"
|
||||
Name: "Modern Industrialization Common Lootbag"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -1096,8 +1096,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 16425539
|
||||
Name: "Modern Industrialization Common Lootbag"
|
||||
Loot: "aof:loot_bags/mi/common"
|
||||
Name: "Modern Industrialization Common Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1130,8 +1130,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 16425539
|
||||
Name: "Modern Industrialization Common Lootbag"
|
||||
Loot: "aof:loot_bags/mi/common"
|
||||
Name: "Modern Industrialization Common Lootbag"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -1192,8 +1192,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 16425539
|
||||
Name: "Modern Industrialization Common Lootbag"
|
||||
Loot: "aof:loot_bags/mi/common"
|
||||
Name: "Modern Industrialization Common Lootbag"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -1222,8 +1222,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16425539
|
||||
Name: "Modern Industrialization Rare Lootbag"
|
||||
Loot: "aof:loot_bags/mi/rare"
|
||||
Name: "Modern Industrialization Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1249,8 +1249,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16425539
|
||||
Name: "Modern Industrialization Rare Lootbag"
|
||||
Loot: "aof:loot_bags/mi/rare"
|
||||
Name: "Modern Industrialization Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1296,8 +1296,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16425539
|
||||
Name: "Modern Industrialization Rare Lootbag"
|
||||
Loot: "aof:loot_bags/mi/rare"
|
||||
Name: "Modern Industrialization Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1328,8 +1328,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 16425539
|
||||
Name: "Modern Industrialization Epic Lootbag"
|
||||
Loot: "aof:loot_bags/mi/epic"
|
||||
Name: "Modern Industrialization Epic Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1384,8 +1384,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16425539
|
||||
Name: "Modern Industrialization Rare Lootbag"
|
||||
Loot: "aof:loot_bags/mi/rare"
|
||||
Name: "Modern Industrialization Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1410,8 +1410,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16425539
|
||||
Name: "Modern Industrialization Rare Lootbag"
|
||||
Loot: "aof:loot_bags/mi/rare"
|
||||
Name: "Modern Industrialization Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1445,8 +1445,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16425539
|
||||
Name: "Modern Industrialization Rare Lootbag"
|
||||
Loot: "aof:loot_bags/mi/rare"
|
||||
Name: "Modern Industrialization Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1476,8 +1476,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16425539
|
||||
Name: "Modern Industrialization Rare Lootbag"
|
||||
Loot: "aof:loot_bags/mi/rare"
|
||||
Name: "Modern Industrialization Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1503,8 +1503,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16425539
|
||||
Name: "Modern Industrialization Rare Lootbag"
|
||||
Loot: "aof:loot_bags/mi/rare"
|
||||
Name: "Modern Industrialization Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1549,8 +1549,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16425539
|
||||
Name: "Modern Industrialization Rare Lootbag"
|
||||
Loot: "aof:loot_bags/mi/rare"
|
||||
Name: "Modern Industrialization Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1576,8 +1576,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16425539
|
||||
Name: "Modern Industrialization Rare Lootbag"
|
||||
Loot: "aof:loot_bags/mi/rare"
|
||||
Name: "Modern Industrialization Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1628,8 +1628,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16425539
|
||||
Name: "Modern Industrialization Rare Lootbag"
|
||||
Loot: "aof:loot_bags/mi/rare"
|
||||
Name: "Modern Industrialization Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1655,8 +1655,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16425539
|
||||
Name: "Modern Industrialization Rare Lootbag"
|
||||
Loot: "aof:loot_bags/mi/rare"
|
||||
Name: "Modern Industrialization Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1682,8 +1682,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16425539
|
||||
Name: "Modern Industrialization Rare Lootbag"
|
||||
Loot: "aof:loot_bags/mi/rare"
|
||||
Name: "Modern Industrialization Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1709,8 +1709,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16425539
|
||||
Name: "Modern Industrialization Rare Lootbag"
|
||||
Loot: "aof:loot_bags/mi/rare"
|
||||
Name: "Modern Industrialization Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1740,8 +1740,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16425539
|
||||
Name: "Modern Industrialization Rare Lootbag"
|
||||
Loot: "aof:loot_bags/mi/rare"
|
||||
Name: "Modern Industrialization Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1765,8 +1765,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16425539
|
||||
Name: "Modern Industrialization Rare Lootbag"
|
||||
Loot: "aof:loot_bags/mi/rare"
|
||||
Name: "Modern Industrialization Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1792,8 +1792,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16425539
|
||||
Name: "Modern Industrialization Rare Lootbag"
|
||||
Loot: "aof:loot_bags/mi/rare"
|
||||
Name: "Modern Industrialization Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1825,8 +1825,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16425539
|
||||
Name: "Modern Industrialization Rare Lootbag"
|
||||
Loot: "aof:loot_bags/mi/rare"
|
||||
Name: "Modern Industrialization Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1860,8 +1860,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16425539
|
||||
Name: "Modern Industrialization Rare Lootbag"
|
||||
Loot: "aof:loot_bags/mi/rare"
|
||||
Name: "Modern Industrialization Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1886,8 +1886,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16425539
|
||||
Name: "Modern Industrialization Rare Lootbag"
|
||||
Loot: "aof:loot_bags/mi/rare"
|
||||
Name: "Modern Industrialization Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1913,8 +1913,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16425539
|
||||
Name: "Modern Industrialization Rare Lootbag"
|
||||
Loot: "aof:loot_bags/mi/rare"
|
||||
Name: "Modern Industrialization Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1939,8 +1939,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16425539
|
||||
Name: "Modern Industrialization Rare Lootbag"
|
||||
Loot: "aof:loot_bags/mi/rare"
|
||||
Name: "Modern Industrialization Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1964,8 +1964,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 16425539
|
||||
Name: "Modern Industrialization Epic Lootbag"
|
||||
Loot: "aof:loot_bags/mi/epic"
|
||||
Name: "Modern Industrialization Epic Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1992,8 +1992,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 16425539
|
||||
Name: "Modern Industrialization Epic Lootbag"
|
||||
Loot: "aof:loot_bags/mi/epic"
|
||||
Name: "Modern Industrialization Epic Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2017,8 +2017,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 16425539
|
||||
Name: "Modern Industrialization Epic Lootbag"
|
||||
Loot: "aof:loot_bags/mi/epic"
|
||||
Name: "Modern Industrialization Epic Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2042,8 +2042,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 16425539
|
||||
Name: "Modern Industrialization Epic Lootbag"
|
||||
Loot: "aof:loot_bags/mi/epic"
|
||||
Name: "Modern Industrialization Epic Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2086,8 +2086,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 16425539
|
||||
Name: "Modern Industrialization Epic Lootbag"
|
||||
Loot: "aof:loot_bags/mi/epic"
|
||||
Name: "Modern Industrialization Epic Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2111,8 +2111,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 16425539
|
||||
Name: "Modern Industrialization Epic Lootbag"
|
||||
Loot: "aof:loot_bags/mi/epic"
|
||||
Name: "Modern Industrialization Epic Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2142,8 +2142,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 16425539
|
||||
Name: "Modern Industrialization Epic Lootbag"
|
||||
Loot: "aof:loot_bags/mi/epic"
|
||||
Name: "Modern Industrialization Epic Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2188,8 +2188,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 16425539
|
||||
Name: "Modern Industrialization Epic Lootbag"
|
||||
Loot: "aof:loot_bags/mi/epic"
|
||||
Name: "Modern Industrialization Epic Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2213,8 +2213,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 16425539
|
||||
Name: "Modern Industrialization Epic Lootbag"
|
||||
Loot: "aof:loot_bags/mi/epic"
|
||||
Name: "Modern Industrialization Epic Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2240,8 +2240,8 @@
|
||||
tag: {
|
||||
Type: "LEGENDARY"
|
||||
Color: 16425539
|
||||
Name: "Modern Industrialization Legendary Lootbag"
|
||||
Loot: "aof:loot_bags/mi/legendary"
|
||||
Name: "Modern Industrialization Legendary Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2266,8 +2266,8 @@
|
||||
tag: {
|
||||
Type: "LEGENDARY"
|
||||
Color: 16425539
|
||||
Name: "Modern Industrialization Legendary Lootbag"
|
||||
Loot: "aof:loot_bags/mi/legendary"
|
||||
Name: "Modern Industrialization Legendary Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2312,8 +2312,8 @@
|
||||
tag: {
|
||||
Type: "LEGENDARY"
|
||||
Color: 16425539
|
||||
Name: "Modern Industrialization Legendary Lootbag"
|
||||
Loot: "aof:loot_bags/mi/legendary"
|
||||
Name: "Modern Industrialization Legendary Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2353,8 +2353,8 @@
|
||||
tag: {
|
||||
Type: "LEGENDARY"
|
||||
Color: 16425539
|
||||
Name: "Modern Industrialization Legendary Lootbag"
|
||||
Loot: "aof:loot_bags/mi/legendary"
|
||||
Name: "Modern Industrialization Legendary Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2380,8 +2380,8 @@
|
||||
tag: {
|
||||
Type: "LEGENDARY"
|
||||
Color: 16425539
|
||||
Name: "Modern Industrialization Legendary Lootbag"
|
||||
Loot: "aof:loot_bags/mi/legendary"
|
||||
Name: "Modern Industrialization Legendary Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2438,8 +2438,8 @@
|
||||
tag: {
|
||||
Type: "LEGENDARY"
|
||||
Color: 16425539
|
||||
Name: "Modern Industrialization Legendary Lootbag"
|
||||
Loot: "aof:loot_bags/mi/legendary"
|
||||
Name: "Modern Industrialization Legendary Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2507,8 +2507,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 16425539
|
||||
Name: "Modern Industrialization Epic Lootbag"
|
||||
Loot: "aof:loot_bags/mi/epic"
|
||||
Name: "Modern Industrialization Epic Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2533,8 +2533,8 @@
|
||||
tag: {
|
||||
Type: "LEGENDARY"
|
||||
Color: 16425539
|
||||
Name: "Modern Industrialization Legendary Lootbag"
|
||||
Loot: "aof:loot_bags/mi/legendary"
|
||||
Name: "Modern Industrialization Legendary Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2560,8 +2560,8 @@
|
||||
tag: {
|
||||
Type: "LEGENDARY"
|
||||
Color: 16425539
|
||||
Name: "Modern Industrialization Legendary Lootbag"
|
||||
Loot: "aof:loot_bags/mi/legendary"
|
||||
Name: "Modern Industrialization Legendary Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2587,8 +2587,8 @@
|
||||
tag: {
|
||||
Type: "LEGENDARY"
|
||||
Color: 16425539
|
||||
Name: "Modern Industrialization Legendary Lootbag"
|
||||
Loot: "aof:loot_bags/mi/legendary"
|
||||
Name: "Modern Industrialization Legendary Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2612,8 +2612,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 16425539
|
||||
Name: "Modern Industrialization Epic Lootbag"
|
||||
Loot: "aof:loot_bags/mi/epic"
|
||||
Name: "Modern Industrialization Epic Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2639,8 +2639,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16425539
|
||||
Name: "Modern Industrialization Rare Lootbag"
|
||||
Loot: "aof:loot_bags/mi/rare"
|
||||
Name: "Modern Industrialization Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2665,8 +2665,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 16425539
|
||||
Name: "Modern Industrialization Epic Lootbag"
|
||||
Loot: "aof:loot_bags/mi/epic"
|
||||
Name: "Modern Industrialization Epic Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2698,8 +2698,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 16425539
|
||||
Name: "Modern Industrialization Common Lootbag"
|
||||
Loot: "aof:loot_bags/mi/common"
|
||||
Name: "Modern Industrialization Common Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2731,8 +2731,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 16425539
|
||||
Name: "Modern Industrialization Common Lootbag"
|
||||
Loot: "aof:loot_bags/mi/common"
|
||||
Name: "Modern Industrialization Common Lootbag"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -2783,8 +2783,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 16425539
|
||||
Name: "Modern Industrialization Common Lootbag"
|
||||
Loot: "aof:loot_bags/mi/common"
|
||||
Name: "Modern Industrialization Common Lootbag"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -2811,8 +2811,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 16425539
|
||||
Name: "Modern Industrialization Common Lootbag"
|
||||
Loot: "aof:loot_bags/mi/common"
|
||||
Name: "Modern Industrialization Common Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2837,8 +2837,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 16425539
|
||||
Name: "Modern Industrialization Common Lootbag"
|
||||
Loot: "aof:loot_bags/mi/common"
|
||||
Name: "Modern Industrialization Common Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2875,8 +2875,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 16425539
|
||||
Name: "Modern Industrialization Common Lootbag"
|
||||
Loot: "aof:loot_bags/mi/common"
|
||||
Name: "Modern Industrialization Common Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2902,8 +2902,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16425539
|
||||
Name: "Modern Industrialization Rare Lootbag"
|
||||
Loot: "aof:loot_bags/mi/rare"
|
||||
Name: "Modern Industrialization Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
|
@ -45,8 +45,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 14731911
|
||||
Loot: "aof:loot_bags/powah/common"
|
||||
Name: "Powah! Common Lootbag"
|
||||
Loot: "aof:loot_bags/powah/common"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -92,8 +92,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 14731911
|
||||
Loot: "aof:loot_bags/powah/common"
|
||||
Name: "Powah! Common Lootbag"
|
||||
Loot: "aof:loot_bags/powah/common"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -117,38 +117,38 @@
|
||||
items: [
|
||||
{
|
||||
id: "powah:battery_starter"
|
||||
tag: { }
|
||||
Count: 1b
|
||||
tag: { }
|
||||
}
|
||||
{
|
||||
id: "powah:battery_basic"
|
||||
tag: { }
|
||||
Count: 1b
|
||||
tag: { }
|
||||
}
|
||||
{
|
||||
id: "powah:battery_hardened"
|
||||
tag: { }
|
||||
Count: 1b
|
||||
tag: { }
|
||||
}
|
||||
{
|
||||
id: "powah:battery_blazing"
|
||||
tag: { }
|
||||
Count: 1b
|
||||
tag: { }
|
||||
}
|
||||
{
|
||||
id: "powah:battery_niotic"
|
||||
tag: { }
|
||||
Count: 1b
|
||||
tag: { }
|
||||
}
|
||||
{
|
||||
id: "powah:battery_spirited"
|
||||
tag: { }
|
||||
Count: 1b
|
||||
tag: { }
|
||||
}
|
||||
{
|
||||
id: "powah:battery_nitro"
|
||||
tag: { }
|
||||
Count: 1b
|
||||
tag: { }
|
||||
}
|
||||
]
|
||||
}
|
||||
@ -163,8 +163,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 14731911
|
||||
Loot: "aof:loot_bags/powah/common"
|
||||
Name: "Powah! Common Lootbag"
|
||||
Loot: "aof:loot_bags/powah/common"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -227,8 +227,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 14731911
|
||||
Loot: "aof:loot_bags/powah/common"
|
||||
Name: "Powah! Common Lootbag"
|
||||
Loot: "aof:loot_bags/powah/common"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -302,8 +302,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 14731911
|
||||
Loot: "aof:loot_bags/powah/common"
|
||||
Name: "Powah! Common Lootbag"
|
||||
Loot: "aof:loot_bags/powah/common"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -329,8 +329,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 14731911
|
||||
Loot: "aof:loot_bags/powah/rare"
|
||||
Name: "Powah! Rare Lootbag"
|
||||
Loot: "aof:loot_bags/powah/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -356,8 +356,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 14731911
|
||||
Loot: "aof:loot_bags/powah/rare"
|
||||
Name: "Powah! Rare Lootbag"
|
||||
Loot: "aof:loot_bags/powah/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -383,8 +383,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 14731911
|
||||
Loot: "aof:loot_bags/powah/epic"
|
||||
Name: "Powah! Epic Lootbag"
|
||||
Loot: "aof:loot_bags/powah/epic"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -410,8 +410,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 14731911
|
||||
Loot: "aof:loot_bags/powah/epic"
|
||||
Name: "Powah! Epic Lootbag"
|
||||
Loot: "aof:loot_bags/powah/epic"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -437,8 +437,8 @@
|
||||
tag: {
|
||||
Type: "LEGENDARY"
|
||||
Color: 14731911
|
||||
Loot: "aof:loot_bags/powah/legendary"
|
||||
Name: "Powah! Legendary Lootbag"
|
||||
Loot: "aof:loot_bags/powah/legendary"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -509,8 +509,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 14731911
|
||||
Loot: "aof:loot_bags/powah/rare"
|
||||
Name: "Powah! Rare Lootbag"
|
||||
Loot: "aof:loot_bags/powah/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -535,8 +535,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 14731911
|
||||
Loot: "aof:loot_bags/powah/rare"
|
||||
Name: "Powah! Rare Lootbag"
|
||||
Loot: "aof:loot_bags/powah/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -599,8 +599,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 14731911
|
||||
Loot: "aof:loot_bags/powah/rare"
|
||||
Name: "Powah! Rare Lootbag"
|
||||
Loot: "aof:loot_bags/powah/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -626,8 +626,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 14731911
|
||||
Loot: "aof:loot_bags/powah/rare"
|
||||
Name: "Powah! Rare Lootbag"
|
||||
Loot: "aof:loot_bags/powah/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -701,8 +701,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 14731911
|
||||
Loot: "aof:loot_bags/powah/common"
|
||||
Name: "Powah! Common Lootbag"
|
||||
Loot: "aof:loot_bags/powah/common"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -764,8 +764,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 14731911
|
||||
Loot: "aof:loot_bags/powah/common"
|
||||
Name: "Powah! Common Lootbag"
|
||||
Loot: "aof:loot_bags/powah/common"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -827,8 +827,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 14731911
|
||||
Loot: "aof:loot_bags/powah/common"
|
||||
Name: "Powah! Common Lootbag"
|
||||
Loot: "aof:loot_bags/powah/common"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -890,8 +890,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 14731911
|
||||
Loot: "aof:loot_bags/powah/common"
|
||||
Name: "Powah! Common Lootbag"
|
||||
Loot: "aof:loot_bags/powah/common"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -954,8 +954,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 14731911
|
||||
Loot: "aof:loot_bags/powah/common"
|
||||
Name: "Powah! Common Lootbag"
|
||||
Loot: "aof:loot_bags/powah/common"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1022,8 +1022,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 14731911
|
||||
Loot: "aof:loot_bags/powah/rare"
|
||||
Name: "Powah! Rare Lootbag"
|
||||
Loot: "aof:loot_bags/powah/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1089,8 +1089,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 14731911
|
||||
Loot: "aof:loot_bags/powah/rare"
|
||||
Name: "Powah! Rare Lootbag"
|
||||
Loot: "aof:loot_bags/powah/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1152,8 +1152,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 14731911
|
||||
Loot: "aof:loot_bags/powah/rare"
|
||||
Name: "Powah! Rare Lootbag"
|
||||
Loot: "aof:loot_bags/powah/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1219,8 +1219,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 14731911
|
||||
Loot: "aof:loot_bags/powah/rare"
|
||||
Name: "Powah! Rare Lootbag"
|
||||
Loot: "aof:loot_bags/powah/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
|
@ -72,8 +72,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/magic/common"
|
||||
Name: "Magic Common Lootbag"
|
||||
Loot: "aof:loot_bags/magic/common"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -106,8 +106,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
Name: "Magic Rare Lootbag"
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -146,8 +146,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/magic/common"
|
||||
Name: "Magic Common Lootbag"
|
||||
Loot: "aof:loot_bags/magic/common"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -186,8 +186,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
Name: "Magic Rare Lootbag"
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -216,8 +216,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
Name: "Magic Rare Lootbag"
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -258,8 +258,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
Name: "Magic Rare Lootbag"
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -288,8 +288,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
Name: "Magic Rare Lootbag"
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -329,8 +329,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
Name: "Magic Rare Lootbag"
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -370,8 +370,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
Name: "Magic Rare Lootbag"
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -400,8 +400,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
Name: "Magic Rare Lootbag"
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -430,8 +430,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
Name: "Magic Rare Lootbag"
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -475,8 +475,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
Name: "Magic Rare Lootbag"
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -502,8 +502,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
Name: "Magic Rare Lootbag"
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -529,8 +529,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
Name: "Magic Rare Lootbag"
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -556,8 +556,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
Name: "Magic Rare Lootbag"
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -583,8 +583,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
Name: "Magic Rare Lootbag"
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -610,8 +610,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
Name: "Magic Rare Lootbag"
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -637,8 +637,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
Name: "Magic Rare Lootbag"
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -664,8 +664,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
Name: "Magic Rare Lootbag"
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -691,8 +691,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
Name: "Magic Rare Lootbag"
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -718,8 +718,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
Name: "Magic Rare Lootbag"
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -745,8 +745,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
Name: "Magic Rare Lootbag"
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -772,8 +772,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
Name: "Magic Rare Lootbag"
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -804,8 +804,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
Name: "Magic Rare Lootbag"
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -840,8 +840,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
Name: "Magic Rare Lootbag"
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -870,8 +870,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/magic/epic"
|
||||
Name: "Magic Epic Lootbag"
|
||||
Loot: "aof:loot_bags/magic/epic"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -897,8 +897,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
Name: "Magic Rare Lootbag"
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -938,8 +938,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
Name: "Magic Rare Lootbag"
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -966,8 +966,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/magic/epic"
|
||||
Name: "Magic Epic Lootbag"
|
||||
Loot: "aof:loot_bags/magic/epic"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -993,8 +993,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/magic/epic"
|
||||
Name: "Magic Epic Lootbag"
|
||||
Loot: "aof:loot_bags/magic/epic"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1021,8 +1021,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
Name: "Magic Rare Lootbag"
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1049,8 +1049,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
Name: "Magic Rare Lootbag"
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1077,8 +1077,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
Name: "Magic Rare Lootbag"
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1103,8 +1103,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/magic/epic"
|
||||
Name: "Magic Epic Lootbag"
|
||||
Loot: "aof:loot_bags/magic/epic"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1140,8 +1140,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
Name: "Magic Rare Lootbag"
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1177,8 +1177,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/magic/epic"
|
||||
Name: "Magic Epic Lootbag"
|
||||
Loot: "aof:loot_bags/magic/epic"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1220,8 +1220,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
Name: "Magic Rare Lootbag"
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1247,8 +1247,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/magic/epic"
|
||||
Name: "Magic Epic Lootbag"
|
||||
Loot: "aof:loot_bags/magic/epic"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1276,8 +1276,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
Name: "Magic Rare Lootbag"
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1303,8 +1303,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
Name: "Magic Rare Lootbag"
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1331,8 +1331,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
Name: "Magic Rare Lootbag"
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1360,8 +1360,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
Name: "Magic Rare Lootbag"
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1387,8 +1387,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/magic/epic"
|
||||
Name: "Magic Epic Lootbag"
|
||||
Loot: "aof:loot_bags/magic/epic"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1417,8 +1417,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
Name: "Magic Rare Lootbag"
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1446,8 +1446,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/magic/epic"
|
||||
Name: "Magic Epic Lootbag"
|
||||
Loot: "aof:loot_bags/magic/epic"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1475,8 +1475,8 @@
|
||||
tag: {
|
||||
Type: "LEGENDARY"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/magic/legendary"
|
||||
Name: "Magic Legendary Lootbag"
|
||||
Loot: "aof:loot_bags/magic/legendary"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1502,8 +1502,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
Name: "Magic Rare Lootbag"
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1529,8 +1529,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 16747259
|
||||
Name: "Magic Epic Lootbag"
|
||||
Loot: "aof:loot_bags/magic/epic"
|
||||
Name: "Magic Epic Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1556,8 +1556,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/magic/epic"
|
||||
Name: "Magic Epic Lootbag"
|
||||
Loot: "aof:loot_bags/magic/epic"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1583,8 +1583,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 16747259
|
||||
Name: "Magic Epic Lootbag"
|
||||
Loot: "aof:loot_bags/magic/epic"
|
||||
Name: "Magic Epic Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1610,8 +1610,8 @@
|
||||
tag: {
|
||||
Type: "LEGENDARY"
|
||||
Color: 16747259
|
||||
Name: "Magic Legendary Lootbag"
|
||||
Loot: "aof:loot_bags/magic/legendary"
|
||||
Name: "Magic Legendary Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1637,8 +1637,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16747259
|
||||
Name: "Magic Rare Lootbag"
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
Name: "Magic Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1666,8 +1666,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 16747259
|
||||
Name: "Magic Epic Lootbag"
|
||||
Loot: "aof:loot_bags/magic/epic"
|
||||
Name: "Magic Epic Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1693,8 +1693,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 16747259
|
||||
Name: "Magic Epic Lootbag"
|
||||
Loot: "aof:loot_bags/magic/epic"
|
||||
Name: "Magic Epic Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
|
@ -49,8 +49,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/magic/common"
|
||||
Name: "Magic Common Lootbag"
|
||||
Loot: "aof:loot_bags/magic/common"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -80,8 +80,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
Name: "Magic Rare Lootbag"
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -111,8 +111,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
Name: "Magic Rare Lootbag"
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -146,8 +146,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
Name: "Magic Rare Lootbag"
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -182,8 +182,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
Name: "Magic Rare Lootbag"
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -213,8 +213,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
Name: "Magic Rare Lootbag"
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -260,8 +260,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/magic/epic"
|
||||
Name: "Magic Epic Lootbag"
|
||||
Loot: "aof:loot_bags/magic/epic"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -291,8 +291,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
Name: "Magic Rare Lootbag"
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -322,8 +322,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
Name: "Magic Rare Lootbag"
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -353,8 +353,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
Name: "Magic Rare Lootbag"
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -384,8 +384,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
Name: "Magic Rare Lootbag"
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -415,8 +415,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
Name: "Magic Rare Lootbag"
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -446,8 +446,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
Name: "Magic Rare Lootbag"
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -480,8 +480,8 @@
|
||||
tag: {
|
||||
Type: "LEGENDARY"
|
||||
Color: 16747259
|
||||
Name: "Magic Legendary Lootbag"
|
||||
Loot: "aof:loot_bags/magic/legendary"
|
||||
Name: "Magic Legendary Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -511,8 +511,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 16747259
|
||||
Name: "Magic Epic Lootbag"
|
||||
Loot: "aof:loot_bags/magic/epic"
|
||||
Name: "Magic Epic Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -538,8 +538,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 16747259
|
||||
Name: "Magic Epic Lootbag"
|
||||
Loot: "aof:loot_bags/magic/epic"
|
||||
Name: "Magic Epic Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -570,8 +570,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 16747259
|
||||
Name: "Magic Epic Lootbag"
|
||||
Loot: "aof:loot_bags/magic/epic"
|
||||
Name: "Magic Epic Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -597,8 +597,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 16747259
|
||||
Name: "Magic Epic Lootbag"
|
||||
Loot: "aof:loot_bags/magic/epic"
|
||||
Name: "Magic Epic Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -624,8 +624,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 16747259
|
||||
Name: "Magic Epic Lootbag"
|
||||
Loot: "aof:loot_bags/magic/epic"
|
||||
Name: "Magic Epic Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -655,8 +655,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 16747259
|
||||
Name: "Magic Epic Lootbag"
|
||||
Loot: "aof:loot_bags/magic/epic"
|
||||
Name: "Magic Epic Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -682,8 +682,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 16747259
|
||||
Name: "Magic Epic Lootbag"
|
||||
Loot: "aof:loot_bags/magic/epic"
|
||||
Name: "Magic Epic Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -713,8 +713,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 16747259
|
||||
Name: "Magic Epic Lootbag"
|
||||
Loot: "aof:loot_bags/magic/epic"
|
||||
Name: "Magic Epic Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -763,8 +763,8 @@
|
||||
tag: {
|
||||
Type: "LEGENDARY"
|
||||
Color: 16747259
|
||||
Name: "Magic Legendary Lootbag"
|
||||
Loot: "aof:loot_bags/magic/legendary"
|
||||
Name: "Magic Legendary Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -796,8 +796,8 @@
|
||||
tag: {
|
||||
Type: "LEGENDARY"
|
||||
Color: 16747259
|
||||
Name: "Magic Legendary Lootbag"
|
||||
Loot: "aof:loot_bags/magic/legendary"
|
||||
Name: "Magic Legendary Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -823,8 +823,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 16747259
|
||||
Name: "Magic Epic Lootbag"
|
||||
Loot: "aof:loot_bags/magic/epic"
|
||||
Name: "Magic Epic Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -854,8 +854,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 16747259
|
||||
Name: "Magic Epic Lootbag"
|
||||
Loot: "aof:loot_bags/magic/epic"
|
||||
Name: "Magic Epic Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -881,8 +881,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 16747259
|
||||
Name: "Magic Epic Lootbag"
|
||||
Loot: "aof:loot_bags/magic/epic"
|
||||
Name: "Magic Epic Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -908,8 +908,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 16747259
|
||||
Name: "Magic Epic Lootbag"
|
||||
Loot: "aof:loot_bags/magic/epic"
|
||||
Name: "Magic Epic Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -935,8 +935,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 16747259
|
||||
Name: "Magic Epic Lootbag"
|
||||
Loot: "aof:loot_bags/magic/epic"
|
||||
Name: "Magic Epic Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -968,8 +968,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 16747259
|
||||
Name: "Magic Epic Lootbag"
|
||||
Loot: "aof:loot_bags/magic/epic"
|
||||
Name: "Magic Epic Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -995,8 +995,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 16747259
|
||||
Name: "Magic Epic Lootbag"
|
||||
Loot: "aof:loot_bags/magic/epic"
|
||||
Name: "Magic Epic Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1026,8 +1026,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 16747259
|
||||
Name: "Magic Epic Lootbag"
|
||||
Loot: "aof:loot_bags/magic/epic"
|
||||
Name: "Magic Epic Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1053,8 +1053,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 16747259
|
||||
Name: "Magic Epic Lootbag"
|
||||
Loot: "aof:loot_bags/magic/epic"
|
||||
Name: "Magic Epic Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1080,8 +1080,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 16747259
|
||||
Name: "Magic Epic Lootbag"
|
||||
Loot: "aof:loot_bags/magic/epic"
|
||||
Name: "Magic Epic Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1107,8 +1107,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 16747259
|
||||
Name: "Magic Epic Lootbag"
|
||||
Loot: "aof:loot_bags/magic/epic"
|
||||
Name: "Magic Epic Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1138,8 +1138,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 16747259
|
||||
Name: "Magic Epic Lootbag"
|
||||
Loot: "aof:loot_bags/magic/epic"
|
||||
Name: "Magic Epic Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
|
@ -29,8 +29,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -56,8 +56,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -81,8 +81,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -106,8 +106,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -131,8 +131,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -162,8 +162,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -187,8 +187,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -212,8 +212,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -237,8 +237,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -262,8 +262,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -287,8 +287,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -319,8 +319,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -344,8 +344,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -369,8 +369,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -394,8 +394,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -419,8 +419,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -444,8 +444,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -486,8 +486,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -512,8 +512,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -538,8 +538,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -564,8 +564,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -590,8 +590,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -616,8 +616,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -642,8 +642,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -668,8 +668,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -695,8 +695,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -720,8 +720,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -745,8 +745,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -770,8 +770,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -795,8 +795,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -820,8 +820,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -845,8 +845,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -870,8 +870,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -952,8 +952,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -977,8 +977,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1002,8 +1002,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1027,8 +1027,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1065,8 +1065,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1090,8 +1090,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1115,8 +1115,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1140,8 +1140,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1165,8 +1165,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1190,8 +1190,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1215,8 +1215,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1240,8 +1240,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1265,8 +1265,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1290,8 +1290,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1315,8 +1315,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 16747259
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
Loot: "aof:loot_bags/misc/logistics"
|
||||
Name: "Logistics & Storage Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
|
@ -105,8 +105,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 3706623
|
||||
Name: "Tech Reborn Common Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/common"
|
||||
Name: "Tech Reborn Common Lootbag"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -145,8 +145,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 3706623
|
||||
Name: "Tech Reborn Common Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/common"
|
||||
Name: "Tech Reborn Common Lootbag"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -175,8 +175,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 3706623
|
||||
Name: "Tech Reborn Common Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/common"
|
||||
Name: "Tech Reborn Common Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -216,8 +216,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 3706623
|
||||
Name: "Tech Reborn Common Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/common"
|
||||
Name: "Tech Reborn Common Lootbag"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -250,8 +250,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 3706623
|
||||
Name: "Tech Reborn Common Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/common"
|
||||
Name: "Tech Reborn Common Lootbag"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -288,8 +288,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 3706623
|
||||
Name: "Tech Reborn Common Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/common"
|
||||
Name: "Tech Reborn Common Lootbag"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -316,8 +316,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 3706623
|
||||
Name: "Tech Reborn Common Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/common"
|
||||
Name: "Tech Reborn Common Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -342,8 +342,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 3706623
|
||||
Name: "Tech Reborn Common Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/common"
|
||||
Name: "Tech Reborn Common Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -375,8 +375,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 3706623
|
||||
Name: "Tech Reborn Common Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/common"
|
||||
Name: "Tech Reborn Common Lootbag"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -409,8 +409,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 3706623
|
||||
Loot: "aof:loot_bags/tech_reborn/rare"
|
||||
Name: "Tech Reborn Rare Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/rare"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -443,8 +443,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 3706623
|
||||
Name: "Tech Reborn Common Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/common"
|
||||
Name: "Tech Reborn Common Lootbag"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -479,8 +479,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 3706623
|
||||
Loot: "aof:loot_bags/tech_reborn/rare"
|
||||
Name: "Tech Reborn Rare Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -520,8 +520,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 3706623
|
||||
Name: "Tech Reborn Common Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/common"
|
||||
Name: "Tech Reborn Common Lootbag"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -547,8 +547,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 3706623
|
||||
Loot: "aof:loot_bags/tech_reborn/rare"
|
||||
Name: "Tech Reborn Rare Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -582,8 +582,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 3706623
|
||||
Name: "Tech Reborn Common Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/common"
|
||||
Name: "Tech Reborn Common Lootbag"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -616,8 +616,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 3706623
|
||||
Loot: "aof:loot_bags/tech_reborn/rare"
|
||||
Name: "Tech Reborn Rare Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/rare"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -650,8 +650,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 3706623
|
||||
Loot: "aof:loot_bags/tech_reborn/epic"
|
||||
Name: "Tech Reborn Epic Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/epic"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -684,8 +684,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 3706623
|
||||
Loot: "aof:loot_bags/tech_reborn/epic"
|
||||
Name: "Tech Reborn Epic Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/epic"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -721,8 +721,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 3706623
|
||||
Loot: "aof:loot_bags/tech_reborn/epic"
|
||||
Name: "Tech Reborn Epic Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/epic"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -748,8 +748,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 3706623
|
||||
Loot: "aof:loot_bags/tech_reborn/rare"
|
||||
Name: "Tech Reborn Rare Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -794,8 +794,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 3706623
|
||||
Name: "Tech Reborn Common Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/common"
|
||||
Name: "Tech Reborn Common Lootbag"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -833,8 +833,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 3706623
|
||||
Name: "Tech Reborn Common Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/common"
|
||||
Name: "Tech Reborn Common Lootbag"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -860,8 +860,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 3706623
|
||||
Name: "Tech Reborn Common Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/common"
|
||||
Name: "Tech Reborn Common Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -886,8 +886,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 3706623
|
||||
Loot: "aof:loot_bags/tech_reborn/rare"
|
||||
Name: "Tech Reborn Rare Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -912,8 +912,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 3706623
|
||||
Loot: "aof:loot_bags/tech_reborn/rare"
|
||||
Name: "Tech Reborn Rare Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -950,8 +950,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 3706623
|
||||
Loot: "aof:loot_bags/tech_reborn/rare"
|
||||
Name: "Tech Reborn Rare Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -989,8 +989,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 3706623
|
||||
Loot: "aof:loot_bags/tech_reborn/rare"
|
||||
Name: "Tech Reborn Rare Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1023,8 +1023,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 3706623
|
||||
Loot: "aof:loot_bags/tech_reborn/rare"
|
||||
Name: "Tech Reborn Rare Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1062,8 +1062,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 3706623
|
||||
Loot: "aof:loot_bags/tech_reborn/rare"
|
||||
Name: "Tech Reborn Rare Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1093,8 +1093,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 3706623
|
||||
Loot: "aof:loot_bags/tech_reborn/rare"
|
||||
Name: "Tech Reborn Rare Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1140,8 +1140,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 3706623
|
||||
Loot: "aof:loot_bags/tech_reborn/epic"
|
||||
Name: "Tech Reborn Epic Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/epic"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1182,8 +1182,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 3706623
|
||||
Loot: "aof:loot_bags/tech_reborn/epic"
|
||||
Name: "Tech Reborn Epic Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/epic"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1207,8 +1207,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 3706623
|
||||
Loot: "aof:loot_bags/tech_reborn/epic"
|
||||
Name: "Tech Reborn Epic Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/epic"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1233,8 +1233,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 3706623
|
||||
Loot: "aof:loot_bags/tech_reborn/rare"
|
||||
Name: "Tech Reborn Rare Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1270,8 +1270,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 3706623
|
||||
Loot: "aof:loot_bags/tech_reborn/epic"
|
||||
Name: "Tech Reborn Epic Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/epic"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1296,8 +1296,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 3706623
|
||||
Loot: "aof:loot_bags/tech_reborn/rare"
|
||||
Name: "Tech Reborn Rare Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1322,8 +1322,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 3706623
|
||||
Loot: "aof:loot_bags/tech_reborn/epic"
|
||||
Name: "Tech Reborn Epic Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/epic"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1347,8 +1347,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 3706623
|
||||
Loot: "aof:loot_bags/tech_reborn/rare"
|
||||
Name: "Tech Reborn Rare Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1376,8 +1376,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 3706623
|
||||
Loot: "aof:loot_bags/tech_reborn/rare"
|
||||
Name: "Tech Reborn Rare Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1405,8 +1405,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 3706623
|
||||
Loot: "aof:loot_bags/tech_reborn/epic"
|
||||
Name: "Tech Reborn Epic Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/epic"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1433,8 +1433,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 3706623
|
||||
Loot: "aof:loot_bags/tech_reborn/epic"
|
||||
Name: "Tech Reborn Epic Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/epic"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1458,8 +1458,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 3706623
|
||||
Loot: "aof:loot_bags/tech_reborn/epic"
|
||||
Name: "Tech Reborn Epic Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/epic"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1483,8 +1483,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 3706623
|
||||
Loot: "aof:loot_bags/tech_reborn/rare"
|
||||
Name: "Tech Reborn Rare Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1511,8 +1511,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 3706623
|
||||
Loot: "aof:loot_bags/tech_reborn/rare"
|
||||
Name: "Tech Reborn Rare Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1536,8 +1536,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 3706623
|
||||
Loot: "aof:loot_bags/tech_reborn/rare"
|
||||
Name: "Tech Reborn Rare Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1569,8 +1569,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 3706623
|
||||
Loot: "aof:loot_bags/tech_reborn/rare"
|
||||
Name: "Tech Reborn Rare Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1595,8 +1595,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 3706623
|
||||
Name: "Tech Reborn Common Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/common"
|
||||
Name: "Tech Reborn Common Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1621,8 +1621,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 3706623
|
||||
Name: "Tech Reborn Common Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/common"
|
||||
Name: "Tech Reborn Common Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1648,8 +1648,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 3706623
|
||||
Name: "Tech Reborn Common Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/common"
|
||||
Name: "Tech Reborn Common Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1675,8 +1675,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 3706623
|
||||
Loot: "aof:loot_bags/tech_reborn/rare"
|
||||
Name: "Tech Reborn Rare Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1703,8 +1703,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 3706623
|
||||
Name: "Tech Reborn Common Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/common"
|
||||
Name: "Tech Reborn Common Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1732,8 +1732,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 3706623
|
||||
Loot: "aof:loot_bags/tech_reborn/rare"
|
||||
Name: "Tech Reborn Rare Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1757,8 +1757,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 3706623
|
||||
Name: "Tech Reborn Common Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/common"
|
||||
Name: "Tech Reborn Common Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1785,8 +1785,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 3706623
|
||||
Name: "Tech Reborn Common Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/common"
|
||||
Name: "Tech Reborn Common Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1811,8 +1811,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 3706623
|
||||
Name: "Tech Reborn Common Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/common"
|
||||
Name: "Tech Reborn Common Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1836,8 +1836,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 3706623
|
||||
Loot: "aof:loot_bags/tech_reborn/rare"
|
||||
Name: "Tech Reborn Rare Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1861,8 +1861,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 3706623
|
||||
Loot: "aof:loot_bags/tech_reborn/rare"
|
||||
Name: "Tech Reborn Rare Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1890,8 +1890,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 3706623
|
||||
Loot: "aof:loot_bags/tech_reborn/rare"
|
||||
Name: "Tech Reborn Rare Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1920,8 +1920,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 3706623
|
||||
Loot: "aof:loot_bags/tech_reborn/epic"
|
||||
Name: "Tech Reborn Epic Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/epic"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1945,8 +1945,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 3706623
|
||||
Loot: "aof:loot_bags/tech_reborn/rare"
|
||||
Name: "Tech Reborn Rare Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1971,8 +1971,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 3706623
|
||||
Loot: "aof:loot_bags/tech_reborn/rare"
|
||||
Name: "Tech Reborn Rare Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2000,8 +2000,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 3706623
|
||||
Loot: "aof:loot_bags/tech_reborn/epic"
|
||||
Name: "Tech Reborn Epic Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/epic"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2028,8 +2028,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 3706623
|
||||
Loot: "aof:loot_bags/tech_reborn/epic"
|
||||
Name: "Tech Reborn Epic Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/epic"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2053,8 +2053,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 3706623
|
||||
Loot: "aof:loot_bags/tech_reborn/epic"
|
||||
Name: "Tech Reborn Epic Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/epic"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2078,8 +2078,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 3706623
|
||||
Name: "Tech Reborn Common Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/common"
|
||||
Name: "Tech Reborn Common Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2104,8 +2104,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 3706623
|
||||
Name: "Tech Reborn Common Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/common"
|
||||
Name: "Tech Reborn Common Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2129,8 +2129,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 3706623
|
||||
Loot: "aof:loot_bags/tech_reborn/rare"
|
||||
Name: "Tech Reborn Rare Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2155,8 +2155,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 3706623
|
||||
Loot: "aof:loot_bags/tech_reborn/rare"
|
||||
Name: "Tech Reborn Rare Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2181,8 +2181,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 3706623
|
||||
Loot: "aof:loot_bags/tech_reborn/rare"
|
||||
Name: "Tech Reborn Rare Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2217,8 +2217,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 3706623
|
||||
Name: "Tech Reborn Common Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/common"
|
||||
Name: "Tech Reborn Common Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2246,8 +2246,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 3706623
|
||||
Loot: "aof:loot_bags/tech_reborn/epic"
|
||||
Name: "Tech Reborn Epic Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/epic"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2272,8 +2272,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 3706623
|
||||
Loot: "aof:loot_bags/tech_reborn/epic"
|
||||
Name: "Tech Reborn Epic Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/epic"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2303,8 +2303,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 3706623
|
||||
Loot: "aof:loot_bags/tech_reborn/epic"
|
||||
Name: "Tech Reborn Epic Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/epic"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2331,8 +2331,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 3706623
|
||||
Loot: "aof:loot_bags/tech_reborn/epic"
|
||||
Name: "Tech Reborn Epic Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/epic"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2356,8 +2356,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 3706623
|
||||
Loot: "aof:loot_bags/tech_reborn/epic"
|
||||
Name: "Tech Reborn Epic Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/epic"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2387,8 +2387,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 3706623
|
||||
Loot: "aof:loot_bags/tech_reborn/epic"
|
||||
Name: "Tech Reborn Epic Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/epic"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2418,8 +2418,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 3706623
|
||||
Loot: "aof:loot_bags/tech_reborn/epic"
|
||||
Name: "Tech Reborn Epic Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/epic"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2448,8 +2448,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 3706623
|
||||
Loot: "aof:loot_bags/tech_reborn/epic"
|
||||
Name: "Tech Reborn Epic Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/epic"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2476,8 +2476,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 3706623
|
||||
Loot: "aof:loot_bags/tech_reborn/epic"
|
||||
Name: "Tech Reborn Epic Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/epic"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2501,8 +2501,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 3706623
|
||||
Loot: "aof:loot_bags/tech_reborn/epic"
|
||||
Name: "Tech Reborn Epic Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/epic"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2531,8 +2531,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 3706623
|
||||
Loot: "aof:loot_bags/tech_reborn/epic"
|
||||
Name: "Tech Reborn Epic Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/epic"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2572,8 +2572,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 3706623
|
||||
Loot: "aof:loot_bags/tech_reborn/epic"
|
||||
Name: "Tech Reborn Epic Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/epic"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2611,8 +2611,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 3706623
|
||||
Loot: "aof:loot_bags/tech_reborn/epic"
|
||||
Name: "Tech Reborn Epic Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/epic"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2642,8 +2642,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 3706623
|
||||
Loot: "aof:loot_bags/tech_reborn/rare"
|
||||
Name: "Tech Reborn Rare Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2675,8 +2675,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 3706623
|
||||
Loot: "aof:loot_bags/tech_reborn/rare"
|
||||
Name: "Tech Reborn Rare Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2700,8 +2700,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 3706623
|
||||
Name: "Tech Reborn Common Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/common"
|
||||
Name: "Tech Reborn Common Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2725,8 +2725,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 3706623
|
||||
Loot: "aof:loot_bags/tech_reborn/rare"
|
||||
Name: "Tech Reborn Rare Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2751,8 +2751,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 3706623
|
||||
Name: "Tech Reborn Common Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/common"
|
||||
Name: "Tech Reborn Common Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2777,8 +2777,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 3706623
|
||||
Loot: "aof:loot_bags/tech_reborn/rare"
|
||||
Name: "Tech Reborn Rare Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/rare"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2803,8 +2803,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 3706623
|
||||
Loot: "aof:loot_bags/tech_reborn/epic"
|
||||
Name: "Tech Reborn Epic Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/epic"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2837,8 +2837,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 3706623
|
||||
Loot: "aof:loot_bags/tech_reborn/epic"
|
||||
Name: "Tech Reborn Epic Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/epic"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2878,8 +2878,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 3706623
|
||||
Loot: "aof:loot_bags/tech_reborn/epic"
|
||||
Name: "Tech Reborn Epic Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/epic"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2903,8 +2903,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 3706623
|
||||
Loot: "aof:loot_bags/tech_reborn/epic"
|
||||
Name: "Tech Reborn Epic Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/epic"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2930,8 +2930,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 3706623
|
||||
Name: "Tech Reborn Common Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/common"
|
||||
Name: "Tech Reborn Common Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2961,8 +2961,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 3706623
|
||||
Loot: "aof:loot_bags/tech_reborn/epic"
|
||||
Name: "Tech Reborn Epic Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/epic"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -2996,8 +2996,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 3706623
|
||||
Loot: "aof:loot_bags/tech_reborn/epic"
|
||||
Name: "Tech Reborn Epic Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/epic"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -3022,8 +3022,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 3706623
|
||||
Loot: "aof:loot_bags/tech_reborn/epic"
|
||||
Name: "Tech Reborn Epic Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/epic"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -3048,8 +3048,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 3706623
|
||||
Loot: "aof:loot_bags/tech_reborn/epic"
|
||||
Name: "Tech Reborn Epic Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/epic"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -3074,8 +3074,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 3706623
|
||||
Loot: "aof:loot_bags/tech_reborn/epic"
|
||||
Name: "Tech Reborn Epic Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/epic"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -3120,8 +3120,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 3706623
|
||||
Name: "Tech Reborn Common Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/common"
|
||||
Name: "Tech Reborn Common Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -3158,8 +3158,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 3706623
|
||||
Name: "Tech Reborn Rare Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/rare"
|
||||
Name: "Tech Reborn Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -3202,8 +3202,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 3706623
|
||||
Name: "Tech Reborn Common Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/common"
|
||||
Name: "Tech Reborn Common Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -3228,8 +3228,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 3706623
|
||||
Name: "Tech Reborn Common Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/common"
|
||||
Name: "Tech Reborn Common Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -3259,8 +3259,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 3706623
|
||||
Loot: "aof:loot_bags/tech_reborn/epic"
|
||||
Name: "Tech Reborn Epic Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/epic"
|
||||
}
|
||||
}
|
||||
}]
|
||||
|
@ -10,7 +10,7 @@
|
||||
quests: [
|
||||
{
|
||||
icon: "xps:block_xp_obelisk"
|
||||
x: -5.0d
|
||||
x: -5.5d
|
||||
y: -5.5d
|
||||
subtitle: "Enchanting Efficiency"
|
||||
description: ["If you did not know by now that as you level up you waste more and more experince points when enchanting. So instead of wasting experince why not store it in this handy container!"]
|
||||
@ -44,7 +44,7 @@
|
||||
]
|
||||
}
|
||||
{
|
||||
x: -9.0d
|
||||
x: -8.5d
|
||||
y: -5.5d
|
||||
subtitle: "Everlasting Longevity!"
|
||||
description: ["The Dragon anvil works exactly like a normal anvil, but it never breaks, has no level cap, and won't ask you for more than 30 levels of experience."]
|
||||
@ -70,8 +70,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -160,8 +160,8 @@
|
||||
tag: {
|
||||
Type: "LEGENDARY"
|
||||
Color: 16103753
|
||||
Name: "Artifact Lootbag"
|
||||
Loot: "aof:loot_bags/misc/artifacts"
|
||||
Name: "Artifact Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -235,8 +235,8 @@
|
||||
tag: {
|
||||
Type: "LEGENDARY"
|
||||
Color: 16103753
|
||||
Name: "Artifact Lootbag"
|
||||
Loot: "aof:loot_bags/misc/artifacts"
|
||||
Name: "Artifact Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -278,8 +278,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 3706623
|
||||
Name: "Tech Reborn Epic Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/epic"
|
||||
Name: "Tech Reborn Epic Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -327,8 +327,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 8090608
|
||||
Name: "Industrial Revolution Rare Lootbag"
|
||||
Loot: "aof:loot_bags/ind_rev/rare"
|
||||
Name: "Industrial Revolution Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -346,7 +346,7 @@
|
||||
{
|
||||
title: "Basic Tools"
|
||||
x: 3.0d
|
||||
y: -1.0d
|
||||
y: -1.5d
|
||||
description: [
|
||||
"Drill could be used as a replacement for Iron Pickaxe and Iron Shovel. It will cost 50 Energy to break one block."
|
||||
""
|
||||
@ -382,8 +382,8 @@
|
||||
tag: {
|
||||
Type: "COMMON"
|
||||
Color: 3706623
|
||||
Name: "Tech Reborn Common Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/common"
|
||||
Name: "Tech Reborn Common Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -391,7 +391,7 @@
|
||||
{
|
||||
title: "Advanced Tools"
|
||||
x: 3.0d
|
||||
y: 0.0d
|
||||
y: -0.5d
|
||||
description: [
|
||||
"Advanced Drill is an advanced version of Basic Drill and works same as Diamond Pickaxe or Diamond Shovel."
|
||||
""
|
||||
@ -427,8 +427,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 3706623
|
||||
Name: "Tech Reborn Rare Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/rare"
|
||||
Name: "Tech Reborn Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -436,7 +436,7 @@
|
||||
{
|
||||
title: "Industrial Tools"
|
||||
x: 3.0d
|
||||
y: 1.0d
|
||||
y: 0.5d
|
||||
description: [
|
||||
"Industrial Drill is a most powerfull drill. It can do AOE mining in 3×3 area. It has 1.000.000 Energy storage. "
|
||||
""
|
||||
@ -472,8 +472,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 3706623
|
||||
Name: "Tech Reborn Epic Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/epic"
|
||||
Name: "Tech Reborn Epic Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -481,7 +481,7 @@
|
||||
{
|
||||
title: "Mining Drills"
|
||||
x: -3.0d
|
||||
y: 1.0d
|
||||
y: -1.5d
|
||||
dependencies: ["300FAC6161C1BCDB"]
|
||||
id: "2206B744E74F22FF"
|
||||
tasks: [
|
||||
@ -516,8 +516,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -530,8 +530,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 8090608
|
||||
Name: "Industrial Revolution Rare Lootbag"
|
||||
Loot: "aof:loot_bags/ind_rev/rare"
|
||||
Name: "Industrial Revolution Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -539,7 +539,7 @@
|
||||
}
|
||||
{
|
||||
x: -3.0d
|
||||
y: 0.0d
|
||||
y: 0.5d
|
||||
subtitle: "Universal tool that combines Pickaxe, Axe, Showel, Sheers and even Sword in one simple rod."
|
||||
description: ["Its mining level on par with diamond made tools. One mined block will cost 100 Energy and it will use 125 Energy on entity hit."]
|
||||
dependencies: ["300FAC6161C1BCDB"]
|
||||
@ -558,8 +558,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 3706623
|
||||
Name: "Tech Reborn Rare Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/rare"
|
||||
Name: "Tech Reborn Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -627,8 +627,8 @@
|
||||
tag: {
|
||||
Type: "LEGENDARY"
|
||||
Color: 16103753
|
||||
Name: "Artifact Lootbag"
|
||||
Loot: "aof:loot_bags/misc/artifacts"
|
||||
Name: "Artifact Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -661,8 +661,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -694,8 +694,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -736,8 +736,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -779,8 +779,8 @@
|
||||
tag: {
|
||||
Type: "LEGENDARY"
|
||||
Color: 16103753
|
||||
Name: "Artifact Lootbag"
|
||||
Loot: "aof:loot_bags/misc/artifacts"
|
||||
Name: "Artifact Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -820,8 +820,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 3706623
|
||||
Name: "Tech Reborn Rare Lootbag"
|
||||
Loot: "aof:loot_bags/tech_reborn/rare"
|
||||
Name: "Tech Reborn Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -883,8 +883,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -892,7 +892,7 @@
|
||||
{
|
||||
title: "Charms"
|
||||
x: -3.0d
|
||||
y: -1.0d
|
||||
y: -0.5d
|
||||
subtitle: "A practice or expression believed to have magic powers."
|
||||
description: [
|
||||
"The portal charm will allow the wearer to walk through portals instantly."
|
||||
@ -927,8 +927,8 @@
|
||||
tag: {
|
||||
Type: "LEGENDARY"
|
||||
Color: 16103753
|
||||
Name: "Artifact Lootbag"
|
||||
Loot: "aof:loot_bags/misc/artifacts"
|
||||
Name: "Artifact Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -969,8 +969,8 @@
|
||||
tag: {
|
||||
Type: "LEGENDARY"
|
||||
Color: 16103753
|
||||
Name: "Artifact Lootbag"
|
||||
Loot: "aof:loot_bags/misc/artifacts"
|
||||
Name: "Artifact Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1003,8 +1003,8 @@
|
||||
tag: {
|
||||
Type: "LEGENDARY"
|
||||
Color: 16103753
|
||||
Name: "Artifact Lootbag"
|
||||
Loot: "aof:loot_bags/misc/artifacts"
|
||||
Name: "Artifact Lootbag"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -1017,8 +1017,8 @@
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Name: "Agriculturist Lootbag"
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -1051,8 +1051,8 @@
|
||||
tag: {
|
||||
Type: "LEGENDARY"
|
||||
Color: 16103753
|
||||
Name: "Artifact Lootbag"
|
||||
Loot: "aof:loot_bags/misc/artifacts"
|
||||
Name: "Artifact Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1119,8 +1119,8 @@
|
||||
tag: {
|
||||
Type: "LEGENDARY"
|
||||
Color: 16103753
|
||||
Name: "Artifact Lootbag"
|
||||
Loot: "aof:loot_bags/misc/artifacts"
|
||||
Name: "Artifact Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1152,8 +1152,8 @@
|
||||
tag: {
|
||||
Type: "LEGENDARY"
|
||||
Color: 16103753
|
||||
Name: "Artifact Lootbag"
|
||||
Loot: "aof:loot_bags/misc/artifacts"
|
||||
Name: "Artifact Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1220,8 +1220,8 @@
|
||||
tag: {
|
||||
Type: "LEGENDARY"
|
||||
Color: 16103753
|
||||
Name: "Artifact Lootbag"
|
||||
Loot: "aof:loot_bags/misc/artifacts"
|
||||
Name: "Artifact Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1252,8 +1252,8 @@
|
||||
tag: {
|
||||
Type: "LEGENDARY"
|
||||
Color: 16103753
|
||||
Name: "Artifact Lootbag"
|
||||
Loot: "aof:loot_bags/misc/artifacts"
|
||||
Name: "Artifact Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1327,8 +1327,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 16747259
|
||||
Name: "Magic Epic Lootbag"
|
||||
Loot: "aof:loot_bags/magic/epic"
|
||||
Name: "Magic Epic Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1395,8 +1395,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16747259
|
||||
Name: "Magic Rare Lootbag"
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
Name: "Magic Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1474,8 +1474,8 @@
|
||||
tag: {
|
||||
Type: "LEGENDARY"
|
||||
Color: 16747259
|
||||
Name: "Magic Legendary Lootbag"
|
||||
Loot: "aof:loot_bags/magic/legendary"
|
||||
Name: "Magic Legendary Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1520,8 +1520,8 @@
|
||||
tag: {
|
||||
Type: "LEGENDARY"
|
||||
Color: 16103753
|
||||
Name: "Artifact Lootbag"
|
||||
Loot: "aof:loot_bags/misc/artifacts"
|
||||
Name: "Artifact Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1587,8 +1587,8 @@
|
||||
tag: {
|
||||
Type: "LEGENDARY"
|
||||
Color: 16103753
|
||||
Name: "Artifact Lootbag"
|
||||
Loot: "aof:loot_bags/misc/artifacts"
|
||||
Name: "Artifact Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1654,8 +1654,8 @@
|
||||
tag: {
|
||||
Type: "LEGENDARY"
|
||||
Color: 16103753
|
||||
Name: "Artifact Lootbag"
|
||||
Loot: "aof:loot_bags/misc/artifacts"
|
||||
Name: "Artifact Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1685,8 +1685,8 @@
|
||||
tag: {
|
||||
Type: "RARE"
|
||||
Color: 16747259
|
||||
Name: "Magic Rare Lootbag"
|
||||
Loot: "aof:loot_bags/magic/rare"
|
||||
Name: "Magic Rare Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1716,8 +1716,8 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 16747259
|
||||
Name: "Magic Epic Lootbag"
|
||||
Loot: "aof:loot_bags/magic/epic"
|
||||
Name: "Magic Epic Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
@ -1747,15 +1747,15 @@
|
||||
tag: {
|
||||
Type: "LEGENDARY"
|
||||
Color: 16747259
|
||||
Name: "Magic Legendary Lootbag"
|
||||
Loot: "aof:loot_bags/magic/legendary"
|
||||
Name: "Magic Legendary Lootbag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
}
|
||||
{
|
||||
x: 5.0d
|
||||
y: -5.0d
|
||||
x: -1.5d
|
||||
y: -4.5d
|
||||
subtitle: "Dirty Stick MK II"
|
||||
description: ["This tool performs much the same function as the rod of the lands, but also allows you to place blocks in midair for an additional cost."]
|
||||
dependencies: ["0ECC48E2B41D4078"]
|
||||
@ -1774,15 +1774,15 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/magic/epic"
|
||||
Name: "Magic Epic Lootbag"
|
||||
Loot: "aof:loot_bags/magic/epic"
|
||||
}
|
||||
}
|
||||
}]
|
||||
}
|
||||
{
|
||||
x: 6.5d
|
||||
y: -4.5d
|
||||
x: 0.0d
|
||||
y: -4.0d
|
||||
subtitle: "Keep the ocean clean!"
|
||||
description: ["Just like the Rod of the Land, the Rod of the Seas will allow you to use mana to place water source blocks."]
|
||||
dependencies: ["0ECC48E2B41D4078"]
|
||||
@ -1801,15 +1801,15 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/magic/epic"
|
||||
Name: "Magic Epic Lootbag"
|
||||
Loot: "aof:loot_bags/magic/epic"
|
||||
}
|
||||
}
|
||||
}]
|
||||
}
|
||||
{
|
||||
x: 8.0d
|
||||
y: -5.0d
|
||||
x: 1.5d
|
||||
y: -4.5d
|
||||
subtitle: "Smoothing Brush in Survival"
|
||||
description: ["The Rod of the Terra Firm is a useful tool for terraforming that allows you to flatten the ground and bring the elevation of the ground closer to your level"]
|
||||
dependencies: ["0ECC48E2B41D4078"]
|
||||
@ -1828,15 +1828,15 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/magic/epic"
|
||||
Name: "Magic Epic Lootbag"
|
||||
Loot: "aof:loot_bags/magic/epic"
|
||||
}
|
||||
}
|
||||
}]
|
||||
}
|
||||
{
|
||||
x: 8.0d
|
||||
y: -7.0d
|
||||
x: 1.5d
|
||||
y: -6.5d
|
||||
subtitle: "Shift your block of choice."
|
||||
description: [
|
||||
"The Rod of the Shifting Crust is an incredibly useful tool that allows you to swap blocks on a surface with other blocks from your inventory."
|
||||
@ -1859,15 +1859,15 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/magic/epic"
|
||||
Name: "Magic Epic Lootbag"
|
||||
Loot: "aof:loot_bags/magic/epic"
|
||||
}
|
||||
}
|
||||
}]
|
||||
}
|
||||
{
|
||||
x: 6.5d
|
||||
y: -8.0d
|
||||
x: 0.0d
|
||||
y: -7.5d
|
||||
subtitle: "It's cobbling time!"
|
||||
description: [
|
||||
"Much like the Rod of the Lands, this rod allows you to place Cobblestone by consuming mana."
|
||||
@ -1890,15 +1890,15 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/magic/epic"
|
||||
Name: "Magic Epic Lootbag"
|
||||
Loot: "aof:loot_bags/magic/epic"
|
||||
}
|
||||
}
|
||||
}]
|
||||
}
|
||||
{
|
||||
x: 5.0d
|
||||
y: -7.5d
|
||||
x: -1.5d
|
||||
y: -7.0d
|
||||
subtitle: "Dirty Stick"
|
||||
description: [
|
||||
"A simple tool that allows you to place dirt blocks using mana."
|
||||
@ -1921,15 +1921,15 @@
|
||||
tag: {
|
||||
Type: "EPIC"
|
||||
Color: 16747259
|
||||
Loot: "aof:loot_bags/magic/epic"
|
||||
Name: "Magic Epic Lootbag"
|
||||
Loot: "aof:loot_bags/magic/epic"
|
||||
}
|
||||
}
|
||||
}]
|
||||
}
|
||||
{
|
||||
x: 6.476190476190482d
|
||||
y: -6.214285714285715d
|
||||
x: -0.023809523809518396d
|
||||
y: -5.714285714285715d
|
||||
id: "0ECC48E2B41D4078"
|
||||
tasks: [{
|
||||
id: "7A35F0C8B2C0B1D1"
|
||||
@ -1938,8 +1938,8 @@
|
||||
}]
|
||||
}
|
||||
{
|
||||
x: 0.0d
|
||||
y: -6.5d
|
||||
x: 6.5d
|
||||
y: -5.5d
|
||||
subtitle: "Blocks as far as the eye can see!"
|
||||
description: ["There are plenty of options of blocks to build with, with options from not only Chisel, Chipped and Chisels n Bits, but also from Blockus, Architect's Palette, and other cool mods!"]
|
||||
id: "30023016124CD227"
|
||||
@ -1951,8 +1951,8 @@
|
||||
}
|
||||
{
|
||||
title: "Chisels and Bits"
|
||||
x: 0.0d
|
||||
y: -5.0d
|
||||
x: 8.0d
|
||||
y: -5.5d
|
||||
subtitle: "Sculpture the world!"
|
||||
description: [
|
||||
"Remove small bits from blocks using chisels."
|
||||
@ -1981,7 +1981,7 @@
|
||||
{
|
||||
title: "Reforging"
|
||||
x: -7.0d
|
||||
y: -7.5d
|
||||
y: -7.0d
|
||||
subtitle: "Reforge your gear at the anvil for a better item tier."
|
||||
description: [
|
||||
"Reforging increases the luck for getting better item tiers."
|
||||
@ -2008,6 +2008,160 @@
|
||||
count: 2
|
||||
}]
|
||||
}
|
||||
{
|
||||
title: "Chipped"
|
||||
x: 5.0d
|
||||
y: -5.5d
|
||||
subtitle: "Dictionary of Blocks!"
|
||||
dependencies: ["30023016124CD227"]
|
||||
id: "02E965F8A539974E"
|
||||
tasks: [
|
||||
{
|
||||
id: "4C5194D4711FB366"
|
||||
type: "item"
|
||||
item: "chipped:botanist_workbench"
|
||||
}
|
||||
{
|
||||
id: "7A50F12A3184DC0C"
|
||||
type: "item"
|
||||
item: "chipped:glassblower"
|
||||
}
|
||||
{
|
||||
id: "65658F8D7D833492"
|
||||
type: "item"
|
||||
item: "chipped:carpenters_table"
|
||||
}
|
||||
{
|
||||
id: "6A906A81EDACB027"
|
||||
type: "item"
|
||||
item: "chipped:loom_table"
|
||||
}
|
||||
{
|
||||
id: "16DF97732538F4F7"
|
||||
type: "item"
|
||||
item: "chipped:mason_table"
|
||||
}
|
||||
{
|
||||
id: "47030C28F6FE2AFC"
|
||||
type: "item"
|
||||
item: "chipped:alchemy_bench"
|
||||
}
|
||||
{
|
||||
id: "5068B74B183F6031"
|
||||
type: "item"
|
||||
item: "chipped:tinkering_table"
|
||||
}
|
||||
]
|
||||
rewards: [
|
||||
{
|
||||
id: "62C9EB7CD0E9793D"
|
||||
type: "item"
|
||||
item: {
|
||||
id: "lootbags:loot_bag"
|
||||
Count: 1b
|
||||
tag: {
|
||||
Type: "UNCOMMON"
|
||||
Color: 5889627
|
||||
Loot: "aof:loot_bags/misc/agriculturist"
|
||||
Name: "Agriculturist Lootbag"
|
||||
}
|
||||
}
|
||||
count: 2
|
||||
}
|
||||
{
|
||||
id: "762E2B8CDC0E0967"
|
||||
type: "item"
|
||||
item: "minecraft:amethyst_shard"
|
||||
count: 3
|
||||
}
|
||||
{
|
||||
id: "1AA08DD43F50EB66"
|
||||
type: "item"
|
||||
item: "minecraft:emerald"
|
||||
count: 8
|
||||
}
|
||||
]
|
||||
}
|
||||
{
|
||||
title: "Gadgets Against Grind"
|
||||
x: -3.0d
|
||||
y: 1.5d
|
||||
subtitle: "With a hint of laziness."
|
||||
description: [
|
||||
"&nThis mod offers the following items:"
|
||||
""
|
||||
"&6- &bEscape Rope"
|
||||
"A way to easily teleport your way out of caves."
|
||||
""
|
||||
"&6- &bEnergized Hearthstone"
|
||||
"A way to teleport to your personal respawn anchor or bed (Hearthstone) or any set location in the world!"
|
||||
""
|
||||
"&6- &bNo Soliciting! Sign"
|
||||
"A way to block certain pesky intruders from spawning near you."
|
||||
""
|
||||
"&6- &bTemporal Pouch"
|
||||
"A way to tick accelerate blocks, Time-in-a-Bottle style."
|
||||
""
|
||||
"&6- &bSacred Salt, Balm and Salve"
|
||||
"A way to stop mobs from spawning near you temporarily, enabling you to mine in peace."
|
||||
""
|
||||
"&6- &bLabeling Tool"
|
||||
"A way to rename your items on the go without consuming tons of experience."
|
||||
]
|
||||
dependencies: ["300FAC6161C1BCDB"]
|
||||
id: "2CF0F42113C98D62"
|
||||
tasks: [{
|
||||
id: "62A9D698CC370BEE"
|
||||
type: "item"
|
||||
item: {
|
||||
id: "itemfilters:mod"
|
||||
Count: 1b
|
||||
tag: {
|
||||
value: "gag"
|
||||
}
|
||||
}
|
||||
}]
|
||||
rewards: [{
|
||||
id: "082DE961EAB1AF5A"
|
||||
type: "item"
|
||||
item: "luggage:luggage"
|
||||
}]
|
||||
}
|
||||
{
|
||||
title: "Mining Gadgets"
|
||||
x: 3.0d
|
||||
y: 1.5d
|
||||
subtitle: "A quick change of pace in mining."
|
||||
description: [
|
||||
"&nThis mod offers the following:"
|
||||
""
|
||||
"&6- &bUpgrades"
|
||||
"Using the &bModification Table &ryou're able to apply a wide variety of different ugprades like &6Fortune&r, &6Silk Touch&r, &6Magnet&r, &6Radius&r, &6Range&r."
|
||||
]
|
||||
dependencies: ["300FAC6161C1BCDB"]
|
||||
id: "47F9B7E27F913CC2"
|
||||
tasks: [
|
||||
{
|
||||
id: "0F865A489248D0D1"
|
||||
type: "item"
|
||||
item: {
|
||||
id: "mininggadgets:mininggadget_simple"
|
||||
Count: 1b
|
||||
tag: { }
|
||||
}
|
||||
}
|
||||
{
|
||||
id: "4A5FC96FD3773312"
|
||||
type: "item"
|
||||
item: "mininggadgets:modificationtable"
|
||||
}
|
||||
]
|
||||
rewards: [{
|
||||
id: "4FF01C71882A7494"
|
||||
type: "item"
|
||||
item: "mininggadgets:upgrade_efficiency_1"
|
||||
}]
|
||||
}
|
||||
]
|
||||
quest_links: [ ]
|
||||
}
|
||||
|
131
config/gag.snbt
Normal file
131
config/gag.snbt
Normal file
@ -0,0 +1,131 @@
|
||||
# Config for GAG
|
||||
# If you're a modpack maker, use the defaultconfigs folder instead!
|
||||
|
||||
{
|
||||
# Settings related to the Escape Rope
|
||||
escape_rope: {
|
||||
# Time (in ticks) the player has to wait after using the rope, default is 10 seconds
|
||||
# Default: 200
|
||||
# Range: 0 ~ 72000
|
||||
cooldown: 200
|
||||
|
||||
# Maximum durability of the rope, default is 512
|
||||
# Default: 512
|
||||
# Range: 0 ~ 32767
|
||||
durability: 512
|
||||
|
||||
# Time (in ticks) it takes to use the rope, default is 3 seconds
|
||||
# Default: 60
|
||||
# Range: 0 ~ 72000
|
||||
warmup: 60
|
||||
}
|
||||
|
||||
# Settings related to the Hearthstone
|
||||
hearthstone: {
|
||||
# Whether the stone should teleport a player to the spawn point if they have no respawn point
|
||||
# Default: true
|
||||
allowSpawn: true
|
||||
|
||||
# Time (in ticks) the player has to wait after using the stone, default is 60 seconds
|
||||
# Default: 1200
|
||||
# Range: 0 ~ 72000
|
||||
cooldown: 1200
|
||||
|
||||
# Damage multiplier for using the stone across dimensions, default is 2
|
||||
# Set to -1 to disable teleporting across dimensions
|
||||
# Default: 2
|
||||
# Range: -∞ ~ +∞
|
||||
dimensionMultiplier: 2
|
||||
|
||||
# Maximum durability of the stone, default is 64
|
||||
# Default: 64
|
||||
# Range: 0 ~ 32767
|
||||
durability: 64
|
||||
|
||||
# Maximum durability of the energized hearthstone, default is 256
|
||||
# Default: 256
|
||||
# Range: 0 ~ 32767
|
||||
energizedDurability: 256
|
||||
|
||||
# Whether the stone should ignore checking whether the spawn block is still valid and unobstructed
|
||||
# Default: false
|
||||
ignoreSpawnBlock: false
|
||||
|
||||
# Maximum range of the stone, set to -1 for unlimited range
|
||||
# Default: -1
|
||||
# Range: -∞ ~ +∞
|
||||
range: -1
|
||||
|
||||
# Whether the stone should use a charge on the player's respawn anchor, if applicable
|
||||
# Default: true
|
||||
useAnchorCharge: true
|
||||
|
||||
# Time (in ticks) it takes to use the stone, default is 5 seconds
|
||||
# Default: 100
|
||||
# Range: 0 ~ 72000
|
||||
warmup: 100
|
||||
}
|
||||
|
||||
# Settings related to miscellaneous items and features
|
||||
misc: {
|
||||
# Maximum number of charges the Labeling Tool can hold, default is 8
|
||||
# Default: 8
|
||||
# Range: 1 ~ 127
|
||||
labelingToolCharges: 8
|
||||
|
||||
# Radius (in blocks) in which the 'No Solicitors!' sign will stop Wandering Traders from spawning, default is 32
|
||||
# Default: 64
|
||||
# Range: 1 ~ 512
|
||||
noSolicitorsRadius: 64
|
||||
}
|
||||
|
||||
# Settings related to the Sands Of Time mechanic
|
||||
# (You can also selectively disable this mechanic for certain block entities using the gag:do_not_accelerate tag)
|
||||
sands_of_time: {
|
||||
# Whether the Temporal Pouch is allowed to accelerate random ticks
|
||||
# Default: true
|
||||
allowRandomTicks: true
|
||||
|
||||
# Time (in seconds) that a block is accelerated per use, default is 30 seconds
|
||||
# This determines the 'worth' of grains as displayed in the Pouch's tooltip
|
||||
# Default: 30
|
||||
# Range: 1 ~ 60
|
||||
durationPerUse: 30
|
||||
|
||||
# [NYI] Amount of grains one Sand Of Time yields
|
||||
# Default: 32
|
||||
# Range: 1 ~ 2147483647
|
||||
grainsPerSand: 32
|
||||
|
||||
# Amount of grains used per click of the Temporal Pouch
|
||||
# (Since the actual sands are NYI, this is currently just equivalent to the 'ticks' used per click)
|
||||
# Default: 600
|
||||
# Range: 1 ~ 2147483647
|
||||
grainsUsed: 600
|
||||
|
||||
# If true, the Sands Of Time mechanic will instead *only* work in the levels specified in the levelFilter list
|
||||
# Default: false
|
||||
invertLevelFilter: false
|
||||
|
||||
# List of levels that the Sands Of Time mechanic will not work in
|
||||
# Default: []
|
||||
levelFilter: [ ]
|
||||
|
||||
# Maximum times the Temporal Pouch can be used in a row, corresponding to maximum speed, default is max speed of 2^8 = x256
|
||||
# Default: 8
|
||||
# Range: 1 ~ 16
|
||||
maxRate: 8
|
||||
|
||||
# Max amount of grains a Pouch can hold
|
||||
# Default: 2147483647
|
||||
# Range: 0 ~ 2147483647
|
||||
pouchCapacity: 2147483647
|
||||
|
||||
# Chance that a random tick will be performed when a random ticking block like crops or saplings is accelerated
|
||||
# On average, this is done every 4096 / 3 ≈ 1365.33 ticks in Vanilla (see https://minecraft.gamepedia.com/Tick#Random_tick)
|
||||
# Actual value is (config value) / (random tick game rule)
|
||||
# Default: 4096
|
||||
# Range: 256 ~ 65536
|
||||
randomTickChance: 4096
|
||||
}
|
||||
}
|
@ -1,5 +1,5 @@
|
||||
#Indium properties file
|
||||
#Fri Feb 17 20:13:19 CET 2023
|
||||
#Fri Mar 03 17:19:54 CET 2023
|
||||
debug-compare-lighting=auto
|
||||
fix-exterior-vertex-lighting=auto
|
||||
ambient-occlusion-mode=auto
|
||||
|
@ -43,6 +43,6 @@
|
||||
"c:titanium_ores": 10,
|
||||
"c:uranium_ores": 10,
|
||||
"c:uraninite_ores": 10,
|
||||
"c:ores/zinc": 4
|
||||
"c:zinc_ores": 4
|
||||
}
|
||||
}
|
@ -1,5 +1,5 @@
|
||||
#This file stores configuration options for Iris, such as the currently active shaderpack
|
||||
#Fri Feb 17 20:13:23 CET 2023
|
||||
#Fri Mar 03 17:19:58 CET 2023
|
||||
disableUpdateMessage=true
|
||||
enableDebugOptions=false
|
||||
maxShadowRenderDistance=32
|
||||
|
@ -6,6 +6,7 @@ disableFuelTooltips = false
|
||||
disableItemTagTooltips = false
|
||||
newVersionMessage = true
|
||||
enableHatchPlacementOverlay = true
|
||||
enableBarrelContentRendering = true
|
||||
colorWaterLava = true
|
||||
enableDebugCommands = false
|
||||
enableBidirectionalEnergyCompat = false
|
||||
|
@ -26,9 +26,9 @@
|
||||
},
|
||||
// List of heat source blocks used under Thermo Generator.
|
||||
"heat_blocks": {
|
||||
"minecraft:lava": 1000,
|
||||
"powah:blazing_crystal_block": 2800,
|
||||
"minecraft:magma_block": 800,
|
||||
"minecraft:lava": 1000
|
||||
"minecraft:magma_block": 800
|
||||
},
|
||||
// Energy produced per fuel tick in the Furnator.
|
||||
"energy_per_fuel_tick": 15,
|
||||
|
@ -1,4 +1,4 @@
|
||||
#Rare Ice Configuration
|
||||
#Fri Feb 17 20:13:10 CET 2023
|
||||
#Fri Mar 03 17:19:45 CET 2023
|
||||
probabilityOfRareIce=3
|
||||
allowInsertingItemsToIce=true
|
||||
|
@ -1,2 +1,2 @@
|
||||
#Pinyin Options
|
||||
#Fri Feb 17 20:15:59 CET 2023
|
||||
#Fri Mar 03 17:26:53 CET 2023
|
||||
|
@ -1,3 +1,3 @@
|
||||
#Double Pinyin Options
|
||||
#Fri Feb 17 20:15:59 CET 2023
|
||||
#Fri Mar 03 17:26:53 CET 2023
|
||||
Converter=sougou
|
||||
|
36
config/simplyswords/loot_config.json5
Normal file
36
config/simplyswords/loot_config.json5
Normal file
@ -0,0 +1,36 @@
|
||||
{
|
||||
// --------------------------------------------- LOOT CONFIGURATION -----------------------------------------------------------------
|
||||
// This config allows for the tweaking of loot injection for UNIQUE weapons.
|
||||
// Standard iron > diamond gear, and Runic Tablets, are controlled by the loot modifiers in the general_config, not here.
|
||||
// ----------------------------------------------------------------------------------------------------------------------------------
|
||||
// --------------------------------------------- How does it work? ------------------------------------------------------------------
|
||||
// If 'add_weapons_to_loot_tables' is enabled in the boolean config, Simply Swords will attempt to inject its loot into
|
||||
// any loot table that contains 'chests' in its filepath. This includes loot tables from other mods.
|
||||
// Any values provided in this config will override the aforementioned process, acting as both a whitelist, and a blacklist.
|
||||
|
||||
// Each line must be made up of a string containing the namespace, path, and filename, in addition to a float value.
|
||||
// The float value provided will determine the chance of the loot appearing in the loot table. Where 0.0 is %0, and 1.0 is %100.
|
||||
// If the float value provided is 0.0 the items will be blacklisted from this loot table and skipped entirely by the loot injection.
|
||||
|
||||
// Items can also be injected into entity loot tables, as seen in the Wither example below.
|
||||
// ----------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
"minecraft:entities/wither": 0.05,
|
||||
"minecraft:chests/ruined_portal": 0.0,
|
||||
"minecraft:chests/village/village_armorer": 0.0,
|
||||
"minecraft:chests/village/village_butcher": 0.0,
|
||||
"minecraft:chests/village/village_cartographer": 0.0,
|
||||
"minecraft:chests/village/village_desert_house": 0.0,
|
||||
"minecraft:chests/village/village_fisher": 0.0,
|
||||
"minecraft:chests/village/village_fletcher": 0.0,
|
||||
"minecraft:chests/village/village_mason": 0.0,
|
||||
"minecraft:chests/village/village_plains_house": 0.0,
|
||||
"minecraft:chests/village/village_savanna_house": 0.0,
|
||||
"minecraft:chests/village/village_shepard": 0.0,
|
||||
"minecraft:chests/village/village_snowy_house": 0.0,
|
||||
"minecraft:chests/village/village_taiga_house": 0.0,
|
||||
"minecraft:chests/village/village_tannery": 0.0,
|
||||
"minecraft:chests/village/village_temple": 0.0,
|
||||
"minecraft:chests/village/village_toolsmith": 0.0,
|
||||
"minecraft:chests/village/village_weaponsmith": 0.0
|
||||
}
|
@ -27,7 +27,7 @@ mainMenu {
|
||||
}
|
||||
}
|
||||
|
||||
text = literal("All of Fabric 6 - 1.4.3")
|
||||
text = literal("All of Fabric 6 - 1.4.4")
|
||||
shadow = true
|
||||
}
|
||||
|
||||
|
5
config/slimegolem.json
Normal file
5
config/slimegolem.json
Normal file
@ -0,0 +1,5 @@
|
||||
{
|
||||
"client": {
|
||||
"showHoneyLayerOnSlimeGolem": true
|
||||
}
|
||||
}
|
@ -27,6 +27,10 @@
|
||||
"enabled": true,
|
||||
"rotate_entities": true
|
||||
},
|
||||
"pulley_block": {
|
||||
"enabled": true,
|
||||
"mineshaft_elevator": 0.02
|
||||
},
|
||||
"wind_vane": true,
|
||||
"clock_block": true,
|
||||
"redstone_illuminator": true,
|
||||
@ -38,10 +42,9 @@
|
||||
"lock_block": true,
|
||||
"dispenser_minecart": true,
|
||||
"crystal_display": true,
|
||||
"relayer": true,
|
||||
"pulley_block": true
|
||||
"relayer": true
|
||||
},
|
||||
"utilities": {
|
||||
"functional": {
|
||||
"rope": {
|
||||
"enabled": true,
|
||||
"block_side_attachment": true,
|
||||
@ -58,18 +61,6 @@
|
||||
"jar_cookies": true,
|
||||
"jar_liquids": true
|
||||
},
|
||||
"hourglass": {
|
||||
"enabled": true,
|
||||
"sugar_time": 40,
|
||||
"sand_time": 70,
|
||||
"concrete_time": 105,
|
||||
"dust_time": 150,
|
||||
"glowstone_time": 190,
|
||||
"blaze_powder_time": 277,
|
||||
"redstone_time": 400,
|
||||
"slime_time": 1750,
|
||||
"honey_time": 2000
|
||||
},
|
||||
"cage": {
|
||||
"enabled": true,
|
||||
"allow_all_mobs": false,
|
||||
|
@ -18,7 +18,11 @@
|
||||
},
|
||||
"world": {
|
||||
// Enables backpacks spawning in loot chests
|
||||
"enableLoot": true
|
||||
"enableLoot": true,
|
||||
// Enables chance to spawn Zombie, Skeleton, Wither Skeleton, Piglin or Enderman with random backpack equipped
|
||||
"spawnEntitiesWithBackpack": true,
|
||||
// Defines spawn chance of entity with backpack (1 in [selected value])
|
||||
"spawnChance": 100
|
||||
},
|
||||
"abilities": {
|
||||
"enableBackpackAbilities": true,
|
||||
|
@ -6,21 +6,30 @@
|
||||
"megane-modern-dynamics": {
|
||||
"lol.bai.megane.module.moderndynamics.MeganeModernDynamics": true
|
||||
},
|
||||
"megane-reborn-core": {
|
||||
"lol.bai.megane.module.reborncore.MeganeRebornCore": true
|
||||
},
|
||||
"megane-industrial-revolution": {
|
||||
"lol.bai.megane.module.indrev.MeganeIndustrialRevolution": true
|
||||
},
|
||||
"modern_industrialization": {
|
||||
"aztech.modern_industrialization.compat.megane.MIMeganeModule": true
|
||||
},
|
||||
"megane-powah": {
|
||||
"lol.bai.megane.module.powah.MeganePowah": true
|
||||
},
|
||||
"megane-deep-mob-learning-simulacrum": {
|
||||
"lol.bai.megane.module.dmlsimulacrum.MeganeDmlSimulacrum": true
|
||||
},
|
||||
"megane-create": {
|
||||
"lol.bai.megane.module.create.MeganeCreate": true
|
||||
},
|
||||
"megane-reborn-core": {
|
||||
"lol.bai.megane.module.reborncore.MeganeRebornCore": true
|
||||
},
|
||||
"megane-fabric-transfer": {
|
||||
"lol.bai.megane.module.fabrictransfer.MeganeFabricTransfer": true
|
||||
},
|
||||
"megane-tech-reborn": {
|
||||
"lol.bai.megane.module.techreborn.MeganeTechReborn": true
|
||||
},
|
||||
"modern_industrialization": {
|
||||
"aztech.modern_industrialization.compat.megane.MIMeganeModule": true
|
||||
},
|
||||
"megane-luggage": {
|
||||
"lol.bai.megane.module.luggage.MeganeLuggage": true
|
||||
},
|
||||
|
209
index.toml
209
index.toml
@ -150,7 +150,7 @@ hash = "5421a11dc71fc220315e048716ce342949832996843affb482797d20a4532fa2"
|
||||
|
||||
[[files]]
|
||||
file = "config/bettercombat/server.json5"
|
||||
hash = "60eb93bce590d93a1cf59af7064fefa254d54d30f5dd1937134e00868ceb980d"
|
||||
hash = "da687ee78a4fe7dd595c3bdf9e24d447e6f17bee35403f7cd2615909232d22c8"
|
||||
|
||||
[[files]]
|
||||
file = "config/betterdeserttemples-fabric-1_19.toml"
|
||||
@ -176,6 +176,22 @@ hash = "a06535f285b4500ecdc36376659a77fea7607ab7f4966bfdcb39164da961d071"
|
||||
file = "config/betterdungeons-fabric-1_19.toml"
|
||||
hash = "c0809814af173f138d83495d36aabcccda93ba2f2a49ec5b7e1c87a201efee77"
|
||||
|
||||
[[files]]
|
||||
file = "config/betterfortresses-fabric-1_19.toml"
|
||||
hash = "c6f718e24389dd618b788ea1ef0c64d3689e9408fd9a482e67ecece0dc392ece"
|
||||
|
||||
[[files]]
|
||||
file = "config/betterfortresses/README.txt"
|
||||
hash = "a4e97263d2f099fcbc3fd7646c85c562e1eb7659bfa5ff66b11f76afaa2f9c06"
|
||||
|
||||
[[files]]
|
||||
file = "config/betterfortresses/fabric-1_19/README.txt"
|
||||
hash = "1175dbf9cd2e7c91b1c852a51e3c0203c68484917e877465b283e2370ad62864"
|
||||
|
||||
[[files]]
|
||||
file = "config/betterfortresses/fabric-1_19/itemframes.json"
|
||||
hash = "674a6ee26700f5f41045ede1753d3d401441cc3f50a8f105120ecb3f64da3d38"
|
||||
|
||||
[[files]]
|
||||
file = "config/bettermineshafts-fabric-1_19.toml"
|
||||
hash = "d486f4672659b59f9a855d9ebce345d8a983c504d24b99613ce280db657c40f5"
|
||||
@ -230,7 +246,7 @@ hash = "fd0438ed8e0f925c3a28eab46e479ca42027bf266ff0dff2fae7a9880f9af9f0"
|
||||
|
||||
[[files]]
|
||||
file = "config/bhmenu/bhmenu-client.properties"
|
||||
hash = "826cfa7a87e43aef287618c9cb6e9cfa4b501a39a0f56f39791b515a73ca1a91"
|
||||
hash = "4f5bb2f540c34d4216326d1181a24ffda3ebeac784c9f14dc60f7910e3cda44f"
|
||||
|
||||
[[files]]
|
||||
file = "config/biomemakeover.json"
|
||||
@ -258,7 +274,7 @@ hash = "a09289defa941a6aeb7ca963c57aff48c7297db2455a9cc1dc965c4e1c5d964c"
|
||||
|
||||
[[files]]
|
||||
file = "config/builtinservers.json"
|
||||
hash = "aa0bfb2007e2b3c51c96503333d5da186f2d8cea312f4471da5ef65fb6948c81"
|
||||
hash = "1acf39504bd4b9b548be05e5061581c78a362f1a61993ad2c033c82453de87fa"
|
||||
|
||||
[[files]]
|
||||
file = "config/bwncr.toml"
|
||||
@ -274,7 +290,7 @@ hash = "716925cf1fd06d3d981aac5adbdc7a84dae30dbb64b17b0c25a8f739be01883d"
|
||||
|
||||
[[files]]
|
||||
file = "config/byg/backups/last_working_configs_backup.zip"
|
||||
hash = "2298925081ac6eec96fb9443a350a3ce6714d08a2f186723d7027cb478005647"
|
||||
hash = "743e704392887dfdc59fe09b67c2e22e6f75fa06d4e3909c0812ada789afe8e9"
|
||||
|
||||
[[files]]
|
||||
file = "config/byg/biomepedia.json5"
|
||||
@ -2394,7 +2410,7 @@ hash = "2150eb47d56f949a7673dfb188a98ef397e5bad8fd77d72dc3377c8a08e77501"
|
||||
|
||||
[[files]]
|
||||
file = "config/dummmmmmy-client.json"
|
||||
hash = "c7bd299aac21e98749ba5509faf508dfbd2c33f589c20ec898e131e206987f24"
|
||||
hash = "7aa2c2335d48794c352229e931a6af341ccfc422f111ec314e714a0a4c29cba9"
|
||||
|
||||
[[files]]
|
||||
file = "config/dummmmmmy-common.json"
|
||||
@ -2434,7 +2450,7 @@ hash = "977f03455b4517949daa1848af0daff283e359ad4ec14487e8e49dfe16519a16"
|
||||
|
||||
[[files]]
|
||||
file = "config/fabric/indigo-renderer.properties"
|
||||
hash = "2a253e05ef91be8619f380946e12ab19813fe7af241864b40485561e52ab5945"
|
||||
hash = "0b885e04752514871754f7e69ebca8b28594c134dbca6eae09f3fbfc4b189eec"
|
||||
|
||||
[[files]]
|
||||
file = "config/fabric_loader_dependencies.json"
|
||||
@ -2486,47 +2502,47 @@ hash = "063f55673e56ccd8b3c8b0b4154855d1cf16ba83ade55deb2c5ff1e1a1631047"
|
||||
|
||||
[[files]]
|
||||
file = "config/ftbquests/quests/chapters/ad_astra.snbt"
|
||||
hash = "c9f9375d7d47dade0d9c8df27626ebd1d4b330b94e32d7167e632aef4f3dc5f1"
|
||||
hash = "cc79990eb6ef36cff76ae78ad9bd7c6661c313efcf59f9aba5315b94ea966212"
|
||||
|
||||
[[files]]
|
||||
file = "config/ftbquests/quests/chapters/adventurer.snbt"
|
||||
hash = "217a7da339309d087d6af708fc89bb9bc68c6966dc9a7e931ea560282b8eb852"
|
||||
hash = "7c9520bf16df39bcce7e026f251079b64a017280b8f949309ac0687491cbc0fb"
|
||||
|
||||
[[files]]
|
||||
file = "config/ftbquests/quests/chapters/agriculture.snbt"
|
||||
hash = "4a5c3110611fe266df4bfd89c4f91643979035c193a6fc94ac16f0b7f335b6ca"
|
||||
hash = "e0e0a9ce98f4018e67bd864b77c2a0eed38549ad4c1de4e061146e733cac573c"
|
||||
|
||||
[[files]]
|
||||
file = "config/ftbquests/quests/chapters/applied_energistics.snbt"
|
||||
hash = "765e911baeff5c7b8b39d003ca97a0ecea549f98b59f17f6de38cbf5669fb780"
|
||||
hash = "d47dc341d21ab943cf980561a1aaa3c98e12d2fcb5cdd5e2c734f34587b97887"
|
||||
|
||||
[[files]]
|
||||
file = "config/ftbquests/quests/chapters/bewitchment.snbt"
|
||||
hash = "3f89b44480fdc0564ed046fecd0eebf277a2d57da5a6c82dfaacabc57960de6d"
|
||||
hash = "f1c1d5764fbbfeefdba2c504457612a8515af2a5ce2f4fc8b8a425f68e2d95ae"
|
||||
|
||||
[[files]]
|
||||
file = "config/ftbquests/quests/chapters/botania.snbt"
|
||||
hash = "af98f86f4fcf749616b63c3b950c8bf560b0b243f1822813114ac8a6d930bf26"
|
||||
hash = "4595f2e64f072ee8da2165b03a918817d804deeeb842e8b68ab6f0028bbad917"
|
||||
|
||||
[[files]]
|
||||
file = "config/ftbquests/quests/chapters/create.snbt"
|
||||
hash = "415bd277319d5eb71d296fa80e27531d242369f363f450d403db3f16a769c885"
|
||||
hash = "a9bdcf60579af911dafbd347e6b5a0dd070e50c08f053f3e76c5bf54d30ac1ea"
|
||||
|
||||
[[files]]
|
||||
file = "config/ftbquests/quests/chapters/deep_mob_learning.snbt"
|
||||
hash = "4cca8484a78a762b8cb24911f238c52a1615477a792240f027a6d71ffe6a5770"
|
||||
hash = "12af505facc6b8a5cb778d86e9ddf7024c2d42c896ef2e3b6c7052202c8a0e23"
|
||||
|
||||
[[files]]
|
||||
file = "config/ftbquests/quests/chapters/getting_started.snbt"
|
||||
hash = "7a69a9d05dafb2c1f57143a2cba8d1b95b0071fcc189fd42e70b837c507f46fe"
|
||||
hash = "846497fed9fdb6ba39d41f3ece61a54dcee855f3ee8de247ae60b6afdb78b2d1"
|
||||
|
||||
[[files]]
|
||||
file = "config/ftbquests/quests/chapters/hex_crafting.snbt"
|
||||
hash = "6008eebbb4486ad8e38d2a73f18df9f23993c3a9d063ca510342981adc973713"
|
||||
hash = "52226ae11a2c60188b868f90c41fea9763826b4fad3d767ca2a6fb358312b533"
|
||||
|
||||
[[files]]
|
||||
file = "config/ftbquests/quests/chapters/industrial_revolution.snbt"
|
||||
hash = "548854670f7be2b0ebd68b71750d78453e3f3e2a181aef17da6c1fcd18b17049"
|
||||
hash = "6a8a76ae284155a14b8ee23791e41f990777983ffc9219f67658fca91d638558"
|
||||
|
||||
[[files]]
|
||||
file = "config/ftbquests/quests/chapters/infinity.snbt"
|
||||
@ -2534,35 +2550,35 @@ hash = "f9e62a6aa63fa498a24bb911ccade397e080ac6d0c727231c49a35ce95e6d86a"
|
||||
|
||||
[[files]]
|
||||
file = "config/ftbquests/quests/chapters/kibe.snbt"
|
||||
hash = "2439c44a7b34424350c64204597a7c0d8d045a1b3478ef65aa74f20de419c7a9"
|
||||
hash = "ca5bac2bbbfe7dff98c66ee82b15abdaf78ff98e5bbe8f0624facd1e37f945a3"
|
||||
|
||||
[[files]]
|
||||
file = "config/ftbquests/quests/chapters/modern_industrialization.snbt"
|
||||
hash = "81e8d149ebc4404628f9a9b5a1a10d0f3418b30aec49cd6190b1ff542e697646"
|
||||
hash = "e5521e3af78b778a951e998a75160aa231d4b4064e7c52c0bdf45ed17f7000eb"
|
||||
|
||||
[[files]]
|
||||
file = "config/ftbquests/quests/chapters/powah.snbt"
|
||||
hash = "ebaaae9c6a1fdd1dfc2ec8004fb1039a1f67f6a51e2a47301869d0af0f27f371"
|
||||
hash = "4502edbad2d3dae28e53fa9e942fd604656a2eb368eec495ba54e370d15d0d42"
|
||||
|
||||
[[files]]
|
||||
file = "config/ftbquests/quests/chapters/spectrum.snbt"
|
||||
hash = "f733ecb57537c6d453472763283357f87e69110bc0285508880caad47253fad1"
|
||||
hash = "b5b53da18e1239c38708b131c8b34b56868fa4cf8abb988a03b5071704acdc54"
|
||||
|
||||
[[files]]
|
||||
file = "config/ftbquests/quests/chapters/spirit.snbt"
|
||||
hash = "0a1a35518bdceaa334069ffa9a9fd5d2fbcb5b3d48a935defb0372c30920e06b"
|
||||
hash = "c7a01bcdc7a4fddb8a82d5a154d8ab67233277f015c40b74d2183bf4f6d61ee7"
|
||||
|
||||
[[files]]
|
||||
file = "config/ftbquests/quests/chapters/storage.snbt"
|
||||
hash = "259befca61437bee3c8f833b74a840d06f62e50a47351d1635e3c35666dde7d8"
|
||||
hash = "d83e126d52550bf51f5c1f6f85b42e757e336e42a17b1ddfce3f3c69e754c6b7"
|
||||
|
||||
[[files]]
|
||||
file = "config/ftbquests/quests/chapters/tech_reborn.snbt"
|
||||
hash = "39004bbd409fe40532c10cff781b1d7fd76fcecdeafaf4208a603f5de8ae1b84"
|
||||
hash = "9322c29bb772f28fbe752c6e651dbfc7154975826416338953e3fbe1ae0922b6"
|
||||
|
||||
[[files]]
|
||||
file = "config/ftbquests/quests/chapters/tools_and_armor.snbt"
|
||||
hash = "fd0e36a12fb0811355680b264bb61df1dbaa96a128216476f955850c953a5476"
|
||||
hash = "1364fc57aae5b6f395403ff84c041a3e3c58820ed39263d6e91b2e667b3725fb"
|
||||
|
||||
[[files]]
|
||||
file = "config/ftbquests/quests/data.snbt"
|
||||
@ -2580,6 +2596,10 @@ hash = "08c6f738d18e26a60d45e8e908bb06acc467aabab1a56335958d988fa2af6347"
|
||||
file = "config/fwaystones/config.json5"
|
||||
hash = "8d489627e8b3a29f718d73a2bb0fae2578af65f607b205aaa50f7b7dd4da2c9f"
|
||||
|
||||
[[files]]
|
||||
file = "config/gag.snbt"
|
||||
hash = "f2aedac82ae42edb54b4b2f0dac4b33feedcd0f99b62764cdfa23f54423c39c5"
|
||||
|
||||
[[files]]
|
||||
file = "config/geodes.properties"
|
||||
hash = "9cdb380990565b4f83b10c737758b8a9bbffc705f7bf8975358ccadc3cc06994"
|
||||
@ -2658,7 +2678,7 @@ hash = "6dded94b6f6cd5be90c92e7a620eed3cee5ac9ea0c83bffd279d15041baa7cd0"
|
||||
|
||||
[[files]]
|
||||
file = "config/indium-renderer.properties"
|
||||
hash = "1e0a10723ec644fcb52bde65f91a1941eec95a23ede9823d2637e92c5bf031f8"
|
||||
hash = "1ee2b5513d33a2343f4ff59ca10b7d2c88ab9a1f31877cb033e1b483cb11a10e"
|
||||
|
||||
[[files]]
|
||||
file = "config/indrev/cables.json"
|
||||
@ -2678,7 +2698,7 @@ hash = "6fbf00f4491111f1be29b4a6dbe172aa90df35cadd5d5ce2cf350bd10e11cbe7"
|
||||
|
||||
[[files]]
|
||||
file = "config/indrev/mining_rig_config.json"
|
||||
hash = "1b3d8f89cf452fa40d603de831aed8f582b00a8667a3f30a05527d9aa735cd21"
|
||||
hash = "bf48d29822c4a863a24c4e7cc1fab9d53c1aa7c27bf682d4ced367165534fdf1"
|
||||
|
||||
[[files]]
|
||||
file = "config/indrev/oregen.json"
|
||||
@ -2710,7 +2730,7 @@ hash = "a268d42b2f32c72e44c27b8294c5db1468cec68e733993713bc6dd1a4d3a7ee3"
|
||||
|
||||
[[files]]
|
||||
file = "config/iris.properties"
|
||||
hash = "c56cd75a9cf86258181ff26248455016be99e16a37ceb2b57ebdd73a86ffcf8c"
|
||||
hash = "179859a7e04016e9fe05d9e56bb1e8329e9260bc637742a4f21f17e109282d99"
|
||||
|
||||
[[files]]
|
||||
file = "config/ironchests/chests/copper.json"
|
||||
@ -2862,7 +2882,7 @@ hash = "2923c65fc2f2f078d3124763eb16567257af7d5b892631c97d3f37e30ba4a016"
|
||||
|
||||
[[files]]
|
||||
file = "config/modern_industrialization.toml"
|
||||
hash = "36bfa9732f340127f1464a773619a61e7d2d3516ec473feacd2cd3fd09366c9c"
|
||||
hash = "cda26c819fd1fe5ea1420d3ddf1558b15700cea965643d82a5a01d5ffab2f454"
|
||||
|
||||
[[files]]
|
||||
file = "config/modmenu.json"
|
||||
@ -2978,7 +2998,7 @@ hash = "405c250d23760fbc3c64d8023f07fe030cfed3b65ed74f5bf4c122c1a5953e76"
|
||||
|
||||
[[files]]
|
||||
file = "config/powah.json5"
|
||||
hash = "1c26da8cf17ee60d578231b9afb0f2299ad26374d9bbde17cce02e02cfd84164"
|
||||
hash = "ff4e064f3aab64bef614f2d796855ae8c3a09370b1aa61bb9369e164c1a740be"
|
||||
|
||||
[[files]]
|
||||
file = "config/probablychests.toml"
|
||||
@ -2994,7 +3014,7 @@ hash = "3244506d38efb766e02fc41c1fad15135b32cc144bfb12e8aaad36a034faf20d"
|
||||
|
||||
[[files]]
|
||||
file = "config/rare-ice.properties"
|
||||
hash = "6533bf53158b24fc0f93a3346d6f7f0809037140884fe60c05deb88cbd523b56"
|
||||
hash = "1da4845dad134bee8a66e87fb17bdcd1dfbff47722a3b8c31ac1fc0d51dafddf"
|
||||
|
||||
[[files]]
|
||||
file = "config/reacharound.json"
|
||||
@ -3034,11 +3054,11 @@ hash = "322dcd5989b2eec8d406a245f193d05307091ec5f5127db65c18dfdbf50e769b"
|
||||
|
||||
[[files]]
|
||||
file = "config/roughlyenoughitems/pinyin.properties"
|
||||
hash = "cdd5fbf61fedcbabd3586d944ae0819c3149e9cfda7cda987f3059c426beb878"
|
||||
hash = "80a65002ca358db89cdf9d03f592b475644453e9f687b2a7856d11de9db0ab6c"
|
||||
|
||||
[[files]]
|
||||
file = "config/roughlyenoughitems/pinyin_double.properties"
|
||||
hash = "2877eb09be8d6801b0313bf236127ac81b48bc947aa421b6952111af369bb46f"
|
||||
hash = "276938df0ab6c30d4c0e855bdf7b074f072d4a4d58b971960996282e44966202"
|
||||
|
||||
[[files]]
|
||||
file = "config/rrp.properties"
|
||||
@ -3104,6 +3124,10 @@ hash = "4d1429e07e783c86008e7a98c07f33004aff6dd1190dc8de278914ff635333a8"
|
||||
file = "config/simplyswords/general_config.json5"
|
||||
hash = "c96171f3c7c672e66d27913ef4fb721d74a6688e556334d6e286eeb9458f1f13"
|
||||
|
||||
[[files]]
|
||||
file = "config/simplyswords/loot_config.json5"
|
||||
hash = "920b648212463e493a74ba0826baec18746f4aca361ee41dba1e3bdcc8ffeb2c"
|
||||
|
||||
[[files]]
|
||||
file = "config/simplyswords/weapon_attributes.json5"
|
||||
hash = "1e5395dea554151f6dede2fa2510c56e0824433576bc1091c1424a4a990ff184"
|
||||
@ -3130,7 +3154,7 @@ hash = "8fffc69dec826d695ab04b747ed1968bef3b7012dec2e83f5fc2aae1df9e7118"
|
||||
|
||||
[[files]]
|
||||
file = "config/slightguimodifications/cts.groovy"
|
||||
hash = "acb0b57c5e7548e3929881b0db5714bc0f75fede60d66c043320288a0f4af8db"
|
||||
hash = "0d7c8bb6b2ae08e9df58e45297f7fe7ab748823769671c02d183b6a3ef0c9981"
|
||||
|
||||
[[files]]
|
||||
file = "config/slightguimodifications/discord_button.png"
|
||||
@ -3160,6 +3184,10 @@ hash = "30ba6629b2c18376f3d89ea4558db6a5555aa161e1d379979e5839dd9085a715"
|
||||
file = "config/slightguimodifications/text_field.png"
|
||||
hash = "58caf9cadbdb72a595a9b81ef3de1fa2a7fcd04c4e02c157071721a9918d3245"
|
||||
|
||||
[[files]]
|
||||
file = "config/slimegolem.json"
|
||||
hash = "47406bdc4313cd5f6d23025488c98212c6fedf54d676128d7e27a166c3072ad6"
|
||||
|
||||
[[files]]
|
||||
file = "config/sodium-extra-options.json"
|
||||
hash = "8e222bb8df0618b9184ad0a1bd2547729590982c2644bd92deba430834c73a94"
|
||||
@ -3230,7 +3258,7 @@ hash = "5e7003e5ae5b93552388c2931bb8e865bc6bb776f96261a72ee453e2967626d7"
|
||||
|
||||
[[files]]
|
||||
file = "config/supplementaries-common.json"
|
||||
hash = "ccfaf71442b972c07d7ada12c6384bc05d2ab2fbba5b01789d17b3cf3d8123d1"
|
||||
hash = "6e16fd276ecabb1ac7be4956326c879cd2a04d6cb8f20e020d2aa8491621d8aa"
|
||||
|
||||
[[files]]
|
||||
file = "config/supplementaries-registry.json"
|
||||
@ -3314,7 +3342,7 @@ hash = "f9434861a26d650934e26a9aabb98eb8537f4e78de027af832af77256f9e982c"
|
||||
|
||||
[[files]]
|
||||
file = "config/travelersbackpack.json5"
|
||||
hash = "38c088078db90630fab8ffa56e3711d994e57633a130203e0730803b2430f884"
|
||||
hash = "9ba95955cdc1108a0934d3bd720d46797c639f85728c04cc9d5aaa44720e51a3"
|
||||
|
||||
[[files]]
|
||||
file = "config/trofers-common.toml"
|
||||
@ -3362,7 +3390,7 @@ hash = "747465780694ae9ce493fae7791c8b1f9eb314f5b35c07ac5b53b390649146b3"
|
||||
|
||||
[[files]]
|
||||
file = "config/waila/megane_modules.json"
|
||||
hash = "713cfc4d07da3b5e53e3941224ba6d8e4d4bc7b3c084b621c714195b59c83a84"
|
||||
hash = "c2cbc19ab268244d17409487bbd99772a22fe6ab28559ca6e00d5283c5aa4a73"
|
||||
|
||||
[[files]]
|
||||
file = "config/waila/waila.json"
|
||||
@ -3626,7 +3654,7 @@ hash = "4b3c873d4a7a4a3576d3f0d5cfac8cd9968e6396e4ef1090b0afd46bcaca7b7a"
|
||||
|
||||
[[files]]
|
||||
file = "kubejs/client_scripts/collapsed_entries.js"
|
||||
hash = "23982dc1fbf741a0bddfa13aece428098f41472e4578c2186b7a3e0a5c578a2a"
|
||||
hash = "b5fe782bc67f526ddbc4cb454d29ff7377c7e674f640f8c9aa8914585078f570"
|
||||
|
||||
[[files]]
|
||||
file = "kubejs/client_scripts/rei.js"
|
||||
@ -5459,7 +5487,7 @@ metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/applied-botanics-addon.pw.toml"
|
||||
hash = "f023c3b9f3f49ad1a2f2987f26faf0e087d3dabe15eec0ab4c5098264ad8feef"
|
||||
hash = "60de684573b623e69a4af51554f7f23b50f1785c7d6e2350035edc56f4928978"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
@ -5474,7 +5502,7 @@ metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/archeology.pw.toml"
|
||||
hash = "b117bf83ad41f51fcd4ada3ae3276b68abc0c66f5703454a17d6a94f17f55409"
|
||||
hash = "e97571c00a33ccb79e7386c27ce92fc4d8da75ab00dd922e8a1d9b69206089cf"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
@ -5534,7 +5562,7 @@ metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/balm-fabric.pw.toml"
|
||||
hash = "a95722a1164bcc8feba04a737e37502dc22d393c3c24149ae1a71d901328d546"
|
||||
hash = "c783357f195fe4e361781bcc72fe5ef47ca77c9d8b6ef08a043807aacb9716e3"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
@ -5564,7 +5592,7 @@ metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/better-combat-by-daedelus.pw.toml"
|
||||
hash = "ae6082ca007fb28b89ce9b9a0c9a8956a978d92800a71f4af00ad6209aedd8cb"
|
||||
hash = "000826ff996cb096dd76c2b7fed356dc1d5f9ab06461c86fbdfc4b895214be3f"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
@ -5584,7 +5612,7 @@ metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/better-stats.pw.toml"
|
||||
hash = "3de7dd33f58b65a90b47b05533bc2b351f1a5f926afb85d6a324823291bb1836"
|
||||
hash = "934b3d2a655cf69bd77c275177b2e1ca2c383f5fa2ce06eed282bc2431ca7199"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
@ -5614,7 +5642,7 @@ metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/blockus.pw.toml"
|
||||
hash = "bb3238ceb56c13b0a37e89c8836e0a56c63159b74c2f4e0dbfb93018c06bcd81"
|
||||
hash = "d24ed9de053c7c8063a308c9906a72dfd70d65cd13c445f8d837495edd6ed09b"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
@ -5634,7 +5662,7 @@ metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/botania-fabric.pw.toml"
|
||||
hash = "07c348d8cda9b2f6fda5653f8d0a95584330b8d705dcae6112749ab1d9e6ef33"
|
||||
hash = "5da8e35c6b2b5a0ccd4e628cc2490024341d5d2b565b2d0ce3478d8cbd9a66d8"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
@ -5684,7 +5712,7 @@ metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/calibrated.pw.toml"
|
||||
hash = "6a9318b185fe384965d33b1432d3fe9cfe9532d3239bda8d5eb9d30722103adf"
|
||||
hash = "59cf007b8cf20491a1152bfc7a465b054999808b86255a49a8440625a0cb3d7f"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
@ -5747,9 +5775,14 @@ file = "mods/chimes.pw.toml"
|
||||
hash = "909b55ac783674e90b97d08098f3d2ef7d111011b5a607a1eb30821150b60166"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/chipped.pw.toml"
|
||||
hash = "6c9d0e55a67b1dd5d7bb6c504a3ee818d09215df88ca18bae21c454f461e886e"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/chisels-bits-for-fabric.pw.toml"
|
||||
hash = "6ed2fd042de07f548825be98a42a7a592ab3f91eb36bc0fc28a52f5a1eb43780"
|
||||
hash = "544f0d6316ad66282fdb34edb91982aa02135afb9169718e6c1bb33942a8b3b6"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
@ -5824,7 +5857,7 @@ metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/cooking-for-blockheads-fabric.pw.toml"
|
||||
hash = "f187553ffddf63b7d4b042c3c5fdca783ed7ccf2d0a0b6e83f5fbcb759a5e04c"
|
||||
hash = "f9cad82f631c314568ddda4455ec597be85017a69f52617721dec34435852753"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
@ -5839,7 +5872,7 @@ metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/crafting-tweaks-fabric.pw.toml"
|
||||
hash = "24c73ddf1c3496f897bc543f7f8f46c7a9cd06d7609c9b93bb0f39e7a58c656c"
|
||||
hash = "e29cf41956924510e6a4227c572cac9daa7672b20ad22c0601cfee857e5aec0b"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
@ -5864,7 +5897,7 @@ metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/creeper-overhaul.pw.toml"
|
||||
hash = "c260f534ab479644b4f8cb52334fda29db09e54762f1e5da207d301ff8b1c6d8"
|
||||
hash = "e7d10d0a09ad04ad80fa377243546f4aaf2740feac244a5409a01018160f62a6"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
@ -5887,6 +5920,11 @@ file = "mods/ct-overhaul-village.pw.toml"
|
||||
hash = "ef8c7331a5f0797fec43a99805216da288d782cb37aa8493961afc9d77141d67"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/ctm-refabricated.pw.toml"
|
||||
hash = "ff58961ce9225bfb216f36f59faca261e478c56fd10de4033cea8e8a2750330a"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/dank-storage-fabric.pw.toml"
|
||||
hash = "67c358d2b2e8f4262d74c2ae3a25f25006b2ad71610046ccbe171d241d12a824"
|
||||
@ -5924,7 +5962,7 @@ metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/default-options-fabric.pw.toml"
|
||||
hash = "35556bca74a08d72ceeaf341556582d84f27e59064b36cdb73a8c1406f866558"
|
||||
hash = "252079e7b7a46ed45fcecd1d2c6ffcb700e3e9d93b47d95a309585020e283e75"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
@ -5964,7 +6002,7 @@ metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/dyed.pw.toml"
|
||||
hash = "6d9a1556ea34fcaa55f1273307c915d4164a870a61a992963460b6d86f6eae6a"
|
||||
hash = "791f9632f4d10f7bcee6176b0d7ea1550eb80877c3170a2e79b8fd2410393d89"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
@ -6014,7 +6052,7 @@ metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/fabric-api.pw.toml"
|
||||
hash = "732c0ed4b6a24c7ed37e0bb8b9b3ce554d9657cc7b7ee2d89afa10625f46538f"
|
||||
hash = "986ec88f2ec8d6ce8a23591adff9604911199f32da0e5605a258d3d68d257edc"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
@ -6049,7 +6087,7 @@ metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/farming-for-blockheads-fabric.pw.toml"
|
||||
hash = "e444825581f2eec5eebf0854dedd0db8f06d2c7f83cb7cc5296b1d73e9bcc572"
|
||||
hash = "cf67f667fa2d402e1c56d67a209e9100eb68d829ff0370f230a78f504794aca7"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
@ -6079,12 +6117,12 @@ metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/forge-config-api-port-fabric.pw.toml"
|
||||
hash = "51b6409bfebbafd3e2a55d4adee8fd73d4a3c17de2ad4853e4897d3043e9da7a"
|
||||
hash = "1c28550134fa3fbaa8893ecf1eef52d525c337649ba190f07ea2eeeacd556156"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/friendly-fire.pw.toml"
|
||||
hash = "391af3da306f57234fa78588dad12a00bb4405ecef04feebd87995bf46e7b179"
|
||||
hash = "d011ed82e17f3b58daf4744405220391cd5afbdba01f829a438d6d9d3808db6f"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
@ -6094,12 +6132,12 @@ metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/ftb-library-fabric.pw.toml"
|
||||
hash = "ef85214468f623d4230b403161f52fe8c9259aa2f204223bbf2ab2a762289728"
|
||||
hash = "0d9dd30438a98f3f59c0df26c433abc566d41c9a877564ddb3efcb2414850fbd"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/ftb-quests-fabric.pw.toml"
|
||||
hash = "5c7ef1d183a6f605bd269e4b171aeb7a7c5b95897bf6ada86c251a866e4b317e"
|
||||
hash = "64ae51ecc8b11dbc57001473337ea8f5cb9d1124f5439eac74612523cb9f2984"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
@ -6122,9 +6160,14 @@ file = "mods/full-turtle-armor.pw.toml"
|
||||
hash = "658f256024fc207b429107d0ed4aa81c2d70638466792c9f38866de1f6acebd5"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/gag.pw.toml"
|
||||
hash = "eaf42adb611f7797b0d6c0ff89b5f9ec6b133164647a9d6bef078030c0f4e79a"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/geckolib.pw.toml"
|
||||
hash = "c762832a629cd85927c22b535e4fefb5efd80bacd3c784fd55e1da8a2715575f"
|
||||
hash = "febe79b541e162e6789eedbe66a4ecf00fe66d9838f23c3bc3d3c1683704f910"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
@ -6154,12 +6197,12 @@ metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/health-overlay-fabric.pw.toml"
|
||||
hash = "182efe76ae2e3300e7ca1918c535fa4b659fa9c1d8acd840bf62586bf06a5587"
|
||||
hash = "a2190508aaa2c3a1408f354a6d6eaf238799433da3efeda74e9703057c4e713d"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/hexal.pw.toml"
|
||||
hash = "0b6ae294f027f261b23c258f530c99253fd0705d003d20f49166d48af97cab66"
|
||||
hash = "ff2bf1e4e35966ccd2fbd634dd67353b1a590863cbd6bf45de13ccc4adad603d"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
@ -6214,7 +6257,7 @@ metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/inventory-essentials-fabric.pw.toml"
|
||||
hash = "434b8aa43d500d77e565e6903425a92ad492c8147490e3588b54d462256f283b"
|
||||
hash = "09bc812b3c7b8cb2524ee9db9d247ade8ba151125d5d80ce0215186e6e36c2a8"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
@ -6224,7 +6267,7 @@ metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/irisshaders.pw.toml"
|
||||
hash = "c2c9da2d2c1be1e25528e872a6645fb31bc6aed7d20d2762952f4e8125d9a9b4"
|
||||
hash = "f6a1e60bb1331e6ec936e743d86234fa68078fdf7b023b267431ed1a550df102"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
@ -6389,7 +6432,7 @@ metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/megane.pw.toml"
|
||||
hash = "6810b9366ae8b05c2046e3f8ae4c12769efeed7393ed2dd8b991136d3c2eb3f2"
|
||||
hash = "b2aaf243c8ba3b7131637d4bc0cb5b28704e80de0073047d98e7da138efdd639"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
@ -6414,7 +6457,7 @@ metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/mmmmmmmmmmmm.pw.toml"
|
||||
hash = "9f79bac5bd6b8bc274c9432324c06b9bad88d048afa682cc1cf76211474c6bb4"
|
||||
hash = "dd5d292e40d52631f69178a39643d6d55c2184773f03acb2870b8865ffe7ad8a"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
@ -6434,7 +6477,7 @@ metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/modern-industrialization.pw.toml"
|
||||
hash = "918d72fd155a74bb5c4ab465e1a4ab5d2b11760838dc629b4e3ad60403f82e62"
|
||||
hash = "041afb75bd415459fca4119c3c97d3f8d879c55ca4904b823c19adace12a9f09"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
@ -6494,7 +6537,7 @@ metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/netherportalfix-fabric.pw.toml"
|
||||
hash = "7505d1cbb6304cfc22f5fd1b6ebe1f20e72ac30e027793663b50349eb36f3392"
|
||||
hash = "eeeb92bc0d5e6dc70fd6f754ac1e64db928e26f2e41d0a0ade807fef7a79eb1e"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
@ -6554,7 +6597,7 @@ metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/pehkui.pw.toml"
|
||||
hash = "ef1b4a441c1f88eb1bb320da4ceb47c8cfc36b53edfd126e8b79eabfe162a14c"
|
||||
hash = "aa7159d00404ac344b9c9fab8a7fff1a6c3ce77659d82a7652ce2dbcdb8259c2"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
@ -6574,7 +6617,7 @@ metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/playeranimator.pw.toml"
|
||||
hash = "199f730eda58ce45cfc01f2470c06ad9d7c526a6f66a42d46322fc19da21faa1"
|
||||
hash = "7bb7a01388f698292f1ef480f114441ce7b74f17b54c9884857266160d9dbffa"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
@ -6654,7 +6697,7 @@ metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/repurposed-structures-fabric.pw.toml"
|
||||
hash = "729a9ee157117edf8bc0a09bb6258b4464b45768d321806bddb0407f4e10689c"
|
||||
hash = "f13f892192186e7f84f3eaaec7bbd6a9b1cb670fd27fceb10b9e534bec58f7cf"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
@ -6704,7 +6747,7 @@ metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/roughly-enough-items.pw.toml"
|
||||
hash = "5af44ce069cd98ed5da80ee20c2ececcf4d06d2aa2969ac8c26dd1ce9dd669d6"
|
||||
hash = "7ce4e1730767749737ed344affc23dc397840d0ff77e7b2942fecf349bd22529"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
@ -6749,7 +6792,7 @@ metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/selene.pw.toml"
|
||||
hash = "a243327d90ad1e54920df9ff58625080348a771d8ac98573544667dee6783bbc"
|
||||
hash = "e1a41c2b6fa9008ff67b7e01764c644261ec8140c9bbac0d6cd519c91523f270"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
@ -6784,7 +6827,7 @@ metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/simply-swords.pw.toml"
|
||||
hash = "1ef195ef38347edf2cc23cb1cc0996dfe20481ef4e61f4ba854c53e862b90635"
|
||||
hash = "630876675354984a56cc0d40d174853d8298b9811e260573bb0d6c2fa220afbf"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
@ -6824,17 +6867,17 @@ metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/spectrum.pw.toml"
|
||||
hash = "e5f86304c2e94d964c790011760cb0a97e3b8ca37fca037137d106b08bd0c870"
|
||||
hash = "f2152ecca98970937f8c6de1cf68287e430bf6bfa96d01e526a3f1fb24743a3f"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/spell-engine.pw.toml"
|
||||
hash = "c7f3895f661269eefb1d83ca4f1af82b44b9e6363c1495c758e209f70e374d3a"
|
||||
hash = "73b5219f74b09342adb7f0ab6ffd2c8a4cee2dec784d6bef6116f6291bb25401"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/spell-power.pw.toml"
|
||||
hash = "daced962430c467d5346194b4b95ae4e3278ed2f86a9726c9da211560e9df55d"
|
||||
hash = "d514d089daeadb69c7de1be709f1bdb437cc22666d9088849c171cb54a2dc4d7"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
@ -6889,7 +6932,7 @@ metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/supplementaries.pw.toml"
|
||||
hash = "c3925d12665f2c5314adabde6070b74a984637922eb7286f16630377942656f2"
|
||||
hash = "3ae2ec96764c3f533579a4f500956fd5921d935593a88f78acb98a883db3e55b"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
@ -6914,7 +6957,7 @@ metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/the-bumblezone-fabric.pw.toml"
|
||||
hash = "ae64eb8911d95357cd0aa49fb735d400566ee1d066da0304af9a1f46f9471e15"
|
||||
hash = "6b30db7b21b963c296109d9d7435d53878e55926622168113a597151ca7b8e2d"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
@ -6969,7 +7012,7 @@ metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/travelers-backpack-fabric.pw.toml"
|
||||
hash = "1ef31378a0b15a515cbce4f1ef6a6f6f5204be89db50b346c1a44cca35c58fe2"
|
||||
hash = "052719cea50d8d01360372209464bc9f0c2fe48d1930a501add7800f282841ff"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
@ -7004,7 +7047,7 @@ metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/visuality.pw.toml"
|
||||
hash = "982ad5242db0a63779f0738334eda8f8a8c5b12e309006c99692606d6f5c3837"
|
||||
hash = "01dc190b2a4cb49aefc6b6bd3301ee6b186e9012c9fcb0a0f085554602901aae"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
@ -7034,7 +7077,7 @@ metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/wizards.pw.toml"
|
||||
hash = "30695e64c9a88f971c0b5a5c4d89c51eb24b35ba6a5ebbd6d690348ad93e42e0"
|
||||
hash = "80b293d339b1c097ce3467e81702d3c2b7ff5c4db623f0ad196823bbde4d0546"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
@ -7079,12 +7122,12 @@ metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/yungs-api-fabric.pw.toml"
|
||||
hash = "da57545eada70d883101405c1f8d6ec94e73514b8ed8b589c0f7ebcfa8f316ff"
|
||||
hash = "86cea403f1d0054bcd47aed8723d608fbb6b627722fcfb4f8c7dfc1490ceb8c9"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/yungs-better-desert-temples-fabric.pw.toml"
|
||||
hash = "1469f6544880a7c8962d4e277f3c00f54ec08a3bdb20ddeb9e11a8a36d839021"
|
||||
hash = "768a75bc03f1d5fa815f33241720a6fdad5cbaaaf10a6fb94e838471fab27f52"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
|
@ -1,4 +1,41 @@
|
||||
REIEvents.groupEntries(event => {
|
||||
const block_bit = Item.of('chiselsandbits:block_bit')
|
||||
event.groupSameItem('kubejs:rei_groups/chiselsandbits/block_bit', 'Chiselled bits', block_bit)
|
||||
});
|
||||
|
||||
function replaceAll(string, find, replace) {
|
||||
return string.replace(new RegExp(find, 'g'), replace)
|
||||
}
|
||||
function getNameOfID(id) {
|
||||
let output = "";
|
||||
id = replaceAll(id, ":", " ");
|
||||
id = replaceAll(id, "_", " ");
|
||||
|
||||
let parts = id.split(" ");
|
||||
for (let i = 0; i < parts.length; i++) {
|
||||
output += parts[i].substring(0, 1).toUpperCase() + parts[i].substring(1);
|
||||
if (i < parts.length - 1) {
|
||||
output += " ";
|
||||
} else {
|
||||
output += "s";
|
||||
}
|
||||
}
|
||||
return output;
|
||||
}
|
||||
REIEvents.groupEntries(event => {
|
||||
Ingredient.of('@minecraft').getItemIds().forEach((id) => {
|
||||
let name = getNameOfID(id);
|
||||
id = id.replace('minecraft:', 'chipped:');
|
||||
let parts = id.split(':');
|
||||
event.groupItemsByTag(`kubejs:rei_groups/${parts[0]}/${parts[1]}`, name, id);
|
||||
});
|
||||
|
||||
let terracottas = ['minecraft:terracotta'];
|
||||
for(let i=1; i<=66; i++){
|
||||
terracottas.push('chipped:terracotta_'+i);
|
||||
}
|
||||
event.groupItems('kubejs:reigroups/chipped/terracotta', getNameOfID('minecraft:terracotta'), terracottas);
|
||||
|
||||
event.groupItemsByTag(`kubejs:rei_groups/chipped/mud`, 'Minecraft Packed Mud Blocks', 'chipped:packed_muc');
|
||||
event.groupItemsByTag(`kubejs:rei_groups/chipped/waxed_exposed_copper`, 'Minecraft Waxed Exposed Copper Blocks', 'chipped:waxed_exposed_copper_block');
|
||||
});
|
@ -1,13 +1,13 @@
|
||||
name = "Applied Botanics Addon"
|
||||
filename = "Applied-Botanics-1.4.1.jar"
|
||||
filename = "Applied-Botanics-1.4.2.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
hash-format = "sha1"
|
||||
hash = "1037edd9c76eb4925fdd5900e505f3518bf812f9"
|
||||
hash = "28c166f03c4223522d475e35d6f7c43c2b2be531"
|
||||
mode = "metadata:curseforge"
|
||||
|
||||
[update]
|
||||
[update.curseforge]
|
||||
file-id = 4203088
|
||||
file-id = 4401045
|
||||
project-id = 610632
|
||||
|
@ -1,13 +1,13 @@
|
||||
name = "Archeology Mod"
|
||||
filename = "capsey-archeology-1.19.2-0.2.4.jar"
|
||||
filename = "capsey-archeology-1.19.2-0.2.5.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
hash-format = "sha1"
|
||||
hash = "79f0e607d1c40d35b6a9cdd8c0bed8f6800c1c05"
|
||||
hash = "e91b70a362387163389fe4aa65020d8721ec0c5d"
|
||||
mode = "metadata:curseforge"
|
||||
|
||||
[update]
|
||||
[update.curseforge]
|
||||
file-id = 4018063
|
||||
file-id = 4401799
|
||||
project-id = 539957
|
||||
|
@ -1,13 +1,13 @@
|
||||
name = "Balm (Fabric Edition)"
|
||||
filename = "balm-fabric-4.5.2+0.jar"
|
||||
filename = "balm-fabric-1.19.2-4.5.6.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
hash-format = "sha1"
|
||||
hash = "1522f8c3eddd62ba81dbdf558462b1afe9de0d52"
|
||||
hash = "5c6d3133037c0f3b424a67e0155380577c2abb1f"
|
||||
mode = "metadata:curseforge"
|
||||
|
||||
[update]
|
||||
[update.curseforge]
|
||||
file-id = 3913965
|
||||
file-id = 4418652
|
||||
project-id = 500525
|
||||
|
@ -1,13 +1,13 @@
|
||||
name = "Better Combat [Fabric & Forge]"
|
||||
filename = "bettercombat-fabric-1.5.5+1.19.jar"
|
||||
filename = "bettercombat-fabric-1.6.1+1.19.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
hash-format = "sha1"
|
||||
hash = "0e86108d0845e5b2d25581d3af25d459a638abce"
|
||||
hash = "b7f91c94de73289963fc33ec46cb43ad526773d6"
|
||||
mode = "metadata:curseforge"
|
||||
|
||||
[update]
|
||||
[update.curseforge]
|
||||
file-id = 4357587
|
||||
file-id = 4413550
|
||||
project-id = 639842
|
||||
|
@ -1,13 +1,13 @@
|
||||
name = "Better Statistics Screen (Fabric/Forge)"
|
||||
filename = "betterstats-2.2.1+1.19.2.jar"
|
||||
filename = "betterstats-2.2.2+1.19.2.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
hash-format = "sha1"
|
||||
hash = "b99e27e03b34091b2d487e47c6841eceb9fe109a"
|
||||
hash = "2850dfc1b85961224d7313cd626fc46e984e9f14"
|
||||
mode = "metadata:curseforge"
|
||||
|
||||
[update]
|
||||
[update.curseforge]
|
||||
file-id = 4378075
|
||||
file-id = 4413105
|
||||
project-id = 667464
|
||||
|
@ -1,13 +1,13 @@
|
||||
name = "Blockus"
|
||||
filename = "blockus-2.5.6+1.19.2.jar"
|
||||
filename = "blockus-2.5.8+1.19.2.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
hash-format = "sha1"
|
||||
hash = "416dba717f5887028fbdb85e296793c86799589f"
|
||||
hash = "db7cf73581377ec0d936c2d9764e70519b95b077"
|
||||
mode = "metadata:curseforge"
|
||||
|
||||
[update]
|
||||
[update.curseforge]
|
||||
file-id = 4132431
|
||||
file-id = 4411967
|
||||
project-id = 312289
|
||||
|
@ -1,13 +1,13 @@
|
||||
name = "Botania (Fabric/Quilt)"
|
||||
filename = "Botania-1.19.2-437-FABRIC.jar"
|
||||
filename = "Botania-1.19.2-438-FABRIC.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
hash-format = "sha1"
|
||||
hash = "84bd340504aa9e8b29f7a70d8f426b8da68de762"
|
||||
hash = "da6db8540988c0671a10378cb236b5dee623d40b"
|
||||
mode = "metadata:curseforge"
|
||||
|
||||
[update]
|
||||
[update.curseforge]
|
||||
file-id = 4371118
|
||||
file-id = 4415874
|
||||
project-id = 421839
|
||||
|
@ -1,13 +1,13 @@
|
||||
name = "Calibrated Access"
|
||||
filename = "calibrated-1.0.1+1.19.jar"
|
||||
filename = "calibrated-1.1.0+1.19.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
hash-format = "sha1"
|
||||
hash = "b4d88fce18ef408aa8aa1e43b16acebf48417618"
|
||||
hash = "1cc0b2c5e7016741d3b7a2e201900f2862e7be80"
|
||||
mode = "metadata:curseforge"
|
||||
|
||||
[update]
|
||||
[update.curseforge]
|
||||
file-id = 4392355
|
||||
file-id = 4403699
|
||||
project-id = 823331
|
||||
|
13
mods/chipped.pw.toml
Normal file
13
mods/chipped.pw.toml
Normal file
@ -0,0 +1,13 @@
|
||||
name = "Chipped"
|
||||
filename = "chipped-forge-1.19.2-2.1.1.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
hash-format = "sha1"
|
||||
hash = "bd177a743e2fbb9b8a61a96d60e707a6e123781f"
|
||||
mode = "metadata:curseforge"
|
||||
|
||||
[update]
|
||||
[update.curseforge]
|
||||
file-id = 4412144
|
||||
project-id = 456956
|
@ -1,13 +1,13 @@
|
||||
name = "Chisels & Bits - For Fabric"
|
||||
filename = "chisels-and-bits-fabric-1.3.126.jar"
|
||||
filename = "chisels-and-bits-fabric-1.3.129.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
hash-format = "sha1"
|
||||
hash = "53c60d56df74b7de19fe072b0c633aa8622112c5"
|
||||
hash = "9f76bc816d7b5623595a9d2fdb3200f647ed543c"
|
||||
mode = "metadata:curseforge"
|
||||
|
||||
[update]
|
||||
[update.curseforge]
|
||||
file-id = 4357359
|
||||
file-id = 4402502
|
||||
project-id = 561059
|
||||
|
@ -1,13 +1,13 @@
|
||||
name = "Cooking for Blockheads (Fabric Edition)"
|
||||
filename = "cookingforblockheads-fabric-1.19.2-13.3.0.jar"
|
||||
filename = "cookingforblockheads-fabric-1.19.2-13.3.1.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
hash-format = "sha1"
|
||||
hash = "fc26fd8b70b10f68a03dd93ef26acfe2219ccafb"
|
||||
hash = "a0f8f4a16d78cc37dbfc4071e9b9632f2a3620f4"
|
||||
mode = "metadata:curseforge"
|
||||
|
||||
[update]
|
||||
[update.curseforge]
|
||||
file-id = 4055311
|
||||
file-id = 4414176
|
||||
project-id = 634546
|
||||
|
@ -1,13 +1,13 @@
|
||||
name = "Crafting Tweaks (Fabric Edition)"
|
||||
filename = "craftingtweaks-fabric-1.19-15.1.0.jar"
|
||||
filename = "craftingtweaks-fabric-1.19-15.1.6.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
hash-format = "sha1"
|
||||
hash = "13e43b2dd29621d3152d25239ec196a2fb53e772"
|
||||
hash = "8a268d86683b20caa25a3cce52f3669eb9ca0b50"
|
||||
mode = "metadata:curseforge"
|
||||
|
||||
[update]
|
||||
[update.curseforge]
|
||||
file-id = 3914006
|
||||
file-id = 4412677
|
||||
project-id = 502516
|
||||
|
@ -1,13 +1,13 @@
|
||||
name = "Creeper Overhaul"
|
||||
filename = "creeperoverhaul-2.0.6-fabric.jar"
|
||||
filename = "creeperoverhaul-2.0.8-fabric.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
hash-format = "sha1"
|
||||
hash = "303724b3e913431e8463322c81936a309dd65f62"
|
||||
hash = "220fb2709190a52e04fe96eac5863cefb515f432"
|
||||
mode = "metadata:curseforge"
|
||||
|
||||
[update]
|
||||
[update.curseforge]
|
||||
file-id = 4339113
|
||||
file-id = 4412633
|
||||
project-id = 561625
|
||||
|
13
mods/ctm-refabricated.pw.toml
Normal file
13
mods/ctm-refabricated.pw.toml
Normal file
@ -0,0 +1,13 @@
|
||||
name = "CTM Refabricated"
|
||||
filename = "ctm-fabric-1.0.0+1.19.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
hash-format = "sha1"
|
||||
hash = "c1edb8b1d4adf9b43b75abecae79cee68fedbbda"
|
||||
mode = "metadata:curseforge"
|
||||
|
||||
[update]
|
||||
[update.curseforge]
|
||||
file-id = 3834086
|
||||
project-id = 633997
|
@ -1,13 +1,13 @@
|
||||
name = "Default Options (Fabric Edition)"
|
||||
filename = "defaultoptions-fabric-1.19-15.0.0.jar"
|
||||
filename = "defaultoptions-fabric-1.19-15.0.1.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
hash-format = "sha1"
|
||||
hash = "afcb346496130985a1beb859c0c8c8668c723525"
|
||||
hash = "17ca80e1d436f4f82c65b83dcc8d854487b3e066"
|
||||
mode = "metadata:curseforge"
|
||||
|
||||
[update]
|
||||
[update.curseforge]
|
||||
file-id = 3832591
|
||||
file-id = 4412634
|
||||
project-id = 547694
|
||||
|
@ -1,13 +1,13 @@
|
||||
name = "Dyed"
|
||||
filename = "dyed-fabric-1.19.2-1.1.0.jar"
|
||||
filename = "dyed-fabric-1.19.3-1.1.1.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
hash-format = "sha1"
|
||||
hash = "e88f1feabfbd0ec52ceae481d7f369472b0d5daa"
|
||||
hash = "8bc592f055665a81e023f8430e0c9a1ff36d0bfd"
|
||||
mode = "metadata:curseforge"
|
||||
|
||||
[update]
|
||||
[update.curseforge]
|
||||
file-id = 4035270
|
||||
file-id = 4405625
|
||||
project-id = 577468
|
||||
|
@ -1,13 +1,13 @@
|
||||
name = "Fabric API"
|
||||
filename = "fabric-api-0.73.2+1.19.2.jar"
|
||||
filename = "fabric-api-0.75.1+1.19.2.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
hash-format = "sha1"
|
||||
hash = "7a351ef5e53b4e708172ea0e3b56527a2fd7ffce"
|
||||
hash = "8c39ce0a82cb2b5f9e909f47a61d7825e29ccf05"
|
||||
mode = "metadata:curseforge"
|
||||
|
||||
[update]
|
||||
[update.curseforge]
|
||||
file-id = 4373739
|
||||
file-id = 4409837
|
||||
project-id = 306612
|
||||
|
@ -1,13 +1,13 @@
|
||||
name = "Farming for Blockheads (Fabric Edition)"
|
||||
filename = "farmingforblockheads-fabric-1.19-11.1.0.jar"
|
||||
filename = "farmingforblockheads-fabric-1.19.2-11.2.0.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
hash-format = "sha1"
|
||||
hash = "ac2bfeca5ef366de5e15363cd998bc3f22dc8b6f"
|
||||
hash = "6bde40b5a2e4479443edd97261c536733fd08b35"
|
||||
mode = "metadata:curseforge"
|
||||
|
||||
[update]
|
||||
[update.curseforge]
|
||||
file-id = 3901906
|
||||
file-id = 4414066
|
||||
project-id = 554586
|
||||
|
@ -1,13 +1,13 @@
|
||||
name = "Forge Config API Port [Fabric]"
|
||||
filename = "ForgeConfigAPIPort-v4.2.10-1.19.2-Fabric.jar"
|
||||
filename = "ForgeConfigAPIPort-v4.2.11-1.19.2-Fabric.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
hash-format = "sha1"
|
||||
hash = "16d379fa9453c446d14a5a19cad9606bfb37f231"
|
||||
hash = "00d05a6d57ee557ab216de5527e1434e3cf50c24"
|
||||
mode = "metadata:curseforge"
|
||||
|
||||
[update]
|
||||
[update.curseforge]
|
||||
file-id = 4322560
|
||||
file-id = 4401535
|
||||
project-id = 547434
|
||||
|
@ -1,13 +1,13 @@
|
||||
name = "Friendly Fire"
|
||||
filename = "FriendlyFire-Fabric-1.19.2-14.0.1.jar"
|
||||
filename = "FriendlyFire-Fabric-1.19.2-14.0.3.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
hash-format = "sha1"
|
||||
hash = "1fdfbbf7dc2f15d6a0a463613ab2881d3a842c5c"
|
||||
hash = "30af4060b67e45d0ab77065e1ecf9247ddb2d781"
|
||||
mode = "metadata:curseforge"
|
||||
|
||||
[update]
|
||||
[update.curseforge]
|
||||
file-id = 3943047
|
||||
file-id = 4409339
|
||||
project-id = 255105
|
||||
|
@ -1,13 +1,13 @@
|
||||
name = "FTB Library (Fabric)"
|
||||
filename = "ftb-library-fabric-1902.3.13-build.175.jar"
|
||||
filename = "ftb-library-fabric-1902.3.14-build.184.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
hash-format = "sha1"
|
||||
hash = "78802cbcfe7a11ba3906bbde0178f13052885910"
|
||||
hash = "fc92847ba255ee6207403dcb45ef7758f9e88241"
|
||||
mode = "metadata:curseforge"
|
||||
|
||||
[update]
|
||||
[update.curseforge]
|
||||
file-id = 4394392
|
||||
file-id = 4415390
|
||||
project-id = 438495
|
||||
|
@ -1,13 +1,13 @@
|
||||
name = "FTB Quests (Fabric)"
|
||||
filename = "ftb-quests-fabric-1902.4.6-build.176.jar"
|
||||
filename = "ftb-quests-fabric-1902.4.9-build.195.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
hash-format = "sha1"
|
||||
hash = "65a0644f1c8d46a226d95e87f6b48b0b7a07fffc"
|
||||
hash = "0ef54a5285884735dda6860279608932a68db9d3"
|
||||
mode = "metadata:curseforge"
|
||||
|
||||
[update]
|
||||
[update.curseforge]
|
||||
file-id = 4351563
|
||||
file-id = 4415429
|
||||
project-id = 438496
|
||||
|
13
mods/gag.pw.toml
Normal file
13
mods/gag.pw.toml
Normal file
@ -0,0 +1,13 @@
|
||||
name = "Gadgets Against Grind"
|
||||
filename = "gag-fabric-2.0.0-build.6.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
hash-format = "sha1"
|
||||
hash = "a12b757f6c22a64370b0207dc314e01c7a69de35"
|
||||
mode = "metadata:curseforge"
|
||||
|
||||
[update]
|
||||
[update.curseforge]
|
||||
file-id = 4415668
|
||||
project-id = 694962
|
@ -1,13 +1,13 @@
|
||||
name = "GeckoLib"
|
||||
filename = "geckolib-fabric-1.19-3.1.39.jar"
|
||||
filename = "geckolib-fabric-1.19-3.1.40.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
hash-format = "sha1"
|
||||
hash = "b8adf75a4f2d7d570af3a4778b8a3fc9bbe3194f"
|
||||
hash = "dab6fa804356b1599ce60601213530bcc5732cbc"
|
||||
mode = "metadata:curseforge"
|
||||
|
||||
[update]
|
||||
[update.curseforge]
|
||||
file-id = 4395589
|
||||
file-id = 4407239
|
||||
project-id = 388172
|
||||
|
@ -1,13 +1,13 @@
|
||||
name = "Health Overlay (Fabric)"
|
||||
filename = "HealthOverlay-1.19.2-7.2.3.jar"
|
||||
filename = "HealthOverlay-1.19.2-7.2.4.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
hash-format = "sha1"
|
||||
hash = "63308830c69ee1d00078ba0170e29da7c381736e"
|
||||
hash = "67fcd0a6fab1741b62c07a9f1c3ca7a3282254db"
|
||||
mode = "metadata:curseforge"
|
||||
|
||||
[update]
|
||||
[update.curseforge]
|
||||
file-id = 4293389
|
||||
file-id = 4403399
|
||||
project-id = 313219
|
||||
|
@ -1,13 +1,13 @@
|
||||
name = "Hexal"
|
||||
filename = "hexal-fabric-1.19.2-0.2.8.jar"
|
||||
filename = "hexal-fabric-1.19.2-0.2.10.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
hash-format = "sha1"
|
||||
hash = "1a85de1cafe800bb008b20765a14408a2d656c51"
|
||||
hash = "4078581cedfe9cf3a0f156356d78d9fc90d80f12"
|
||||
mode = "metadata:curseforge"
|
||||
|
||||
[update]
|
||||
[update.curseforge]
|
||||
file-id = 4399725
|
||||
file-id = 4402170
|
||||
project-id = 824725
|
||||
|
@ -1,13 +1,13 @@
|
||||
name = "Inventory Essentials (Fabric Edition)"
|
||||
filename = "inventoryessentials-fabric-1.19-5.0.0.jar"
|
||||
filename = "inventoryessentials-fabric-1.19-5.0.2.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
hash-format = "sha1"
|
||||
hash = "e150316abd8a47c95b6b50b9c075084aa9a2c65a"
|
||||
hash = "875701ca3f30ea2bac1992423e023af4a6e99832"
|
||||
mode = "metadata:curseforge"
|
||||
|
||||
[update]
|
||||
[update.curseforge]
|
||||
file-id = 3832520
|
||||
file-id = 4414161
|
||||
project-id = 547699
|
||||
|
@ -1,13 +1,13 @@
|
||||
name = "Iris Shaders"
|
||||
filename = "iris-mc1.19.2-1.5.0.jar"
|
||||
filename = "iris-mc1.19.2-1.5.2.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
hash-format = "sha1"
|
||||
hash = "0fab5a9ac4bc30794e12b7478fcb2e7036f02b33"
|
||||
hash = "5377f13f7315dd48111bd431bb8ea6e6137a8c62"
|
||||
mode = "metadata:curseforge"
|
||||
|
||||
[update]
|
||||
[update.curseforge]
|
||||
file-id = 4284512
|
||||
file-id = 4385033
|
||||
project-id = 455508
|
||||
|
@ -1,13 +1,13 @@
|
||||
name = "megane"
|
||||
filename = "megane-8.3.0.jar"
|
||||
filename = "megane-8.4.0.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
hash-format = "sha1"
|
||||
hash = "2f5a36fed95740372665e2ea3c794929dcf4cc28"
|
||||
hash = "b9408e2e93b99d1d21051ffcea8b603cfbfc70ca"
|
||||
mode = "metadata:curseforge"
|
||||
|
||||
[update]
|
||||
[update.curseforge]
|
||||
file-id = 3962125
|
||||
file-id = 4408752
|
||||
project-id = 408118
|
||||
|
@ -1,13 +1,13 @@
|
||||
name = "MmmMmmMmmMmm (Target Dummy)"
|
||||
filename = "dummmmmmy-1.19.2-1.7.0-fabric.jar"
|
||||
filename = "dummmmmmy-1.19.2-1.7.1-fabric.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
hash-format = "sha1"
|
||||
hash = "9199d3dcb17519510324738471d1fea286d8baed"
|
||||
hash = "26e1eaf68b9356fdf62341033a20265e29825551"
|
||||
mode = "metadata:curseforge"
|
||||
|
||||
[update]
|
||||
[update.curseforge]
|
||||
file-id = 4382198
|
||||
file-id = 4410141
|
||||
project-id = 225738
|
||||
|
@ -1,13 +1,13 @@
|
||||
name = "Modern Industrialization"
|
||||
filename = "Modern-Industrialization-1.6.2-beta.jar"
|
||||
filename = "Modern-Industrialization-1.6.3.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
hash-format = "sha1"
|
||||
hash = "c8f32a951dce00f0af0aeb29d10f83c871ac89a7"
|
||||
hash = "0efb5cf8e2b93ea4ed806ad839cced9d2cd284d8"
|
||||
mode = "metadata:curseforge"
|
||||
|
||||
[update]
|
||||
[update.curseforge]
|
||||
file-id = 4304214
|
||||
file-id = 4401565
|
||||
project-id = 405388
|
||||
|
@ -1,13 +1,13 @@
|
||||
name = "NetherPortalFix (Fabric Edition)"
|
||||
filename = "netherportalfix-fabric-1.19-10.0.0.jar"
|
||||
filename = "netherportalfix-fabric-1.19-10.0.1.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
hash-format = "sha1"
|
||||
hash = "37d54fa49680e8a9faded540a64e8fd6e6609796"
|
||||
hash = "0c0d1913ac7099b7d7f66bb05edea17fa3ca1e46"
|
||||
mode = "metadata:curseforge"
|
||||
|
||||
[update]
|
||||
[update.curseforge]
|
||||
file-id = 3832620
|
||||
file-id = 4412696
|
||||
project-id = 547696
|
||||
|
@ -1,13 +1,13 @@
|
||||
name = "Pehkui"
|
||||
filename = "Pehkui-3.6.3+1.14.4-1.19.3.jar"
|
||||
filename = "Pehkui-3.7.0+1.14.4-1.19.3.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
hash-format = "sha1"
|
||||
hash = "69ac7f130bb07e95cdd06d458ff48b16ec3728b4"
|
||||
hash = "12fbb67fa9be310a2c85e33658b2b022a02f135a"
|
||||
mode = "metadata:curseforge"
|
||||
|
||||
[update]
|
||||
[update.curseforge]
|
||||
file-id = 4314945
|
||||
file-id = 4408057
|
||||
project-id = 319596
|
||||
|
@ -1,13 +1,13 @@
|
||||
name = "playerAnimator"
|
||||
filename = "player-animation-lib-fabric-0.4.2.jar"
|
||||
filename = "player-animation-lib-fabric-1.0.2.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
hash-format = "sha1"
|
||||
hash = "2a615fa4593feaffccbf00825b4e0934d1c20d2a"
|
||||
hash = "4b9341b70949bb285f05106cf3c8550e2b07ec31"
|
||||
mode = "metadata:curseforge"
|
||||
|
||||
[update]
|
||||
[update.curseforge]
|
||||
file-id = 4357569
|
||||
file-id = 4418150
|
||||
project-id = 658587
|
||||
|
@ -1,13 +1,13 @@
|
||||
name = "Repurposed Structures (Quilt/Fabric)"
|
||||
filename = "repurposed_structures_fabric-6.1.6+1.19.2.jar"
|
||||
filename = "repurposed_structures_fabric-6.3.16+1.19.2.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
hash-format = "sha1"
|
||||
hash = "fffe7f061a01829cc1b30426c86b9272a7fad421"
|
||||
hash = "25c4125b1e23c4132ec7a141c4dec73649e2830a"
|
||||
mode = "metadata:curseforge"
|
||||
|
||||
[update]
|
||||
[update.curseforge]
|
||||
file-id = 4395623
|
||||
file-id = 4417696
|
||||
project-id = 391366
|
||||
|
@ -1,13 +1,13 @@
|
||||
name = "Roughly Enough Items Fabric/Forge (REI)"
|
||||
filename = "RoughlyEnoughItems-9.1.587.jar"
|
||||
filename = "RoughlyEnoughItems-9.1.591.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
hash-format = "sha1"
|
||||
hash = "48a78bea0e7c0c8ddabdb235be4306c7ba885b10"
|
||||
hash = "c7c7956e2f11c6518b576273185c0512b2c0779f"
|
||||
mode = "metadata:curseforge"
|
||||
|
||||
[update]
|
||||
[update.curseforge]
|
||||
file-id = 4369090
|
||||
file-id = 4401128
|
||||
project-id = 310111
|
||||
|
@ -1,13 +1,13 @@
|
||||
name = "Moonlight Lib"
|
||||
filename = "moonlight-1.19.2-2.2.7-fabric.jar"
|
||||
filename = "moonlight-1.19.2-2.2.13-fabric.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
hash-format = "sha1"
|
||||
hash = "4456db2cfebac9ef169be2b1dca14f6681930f22"
|
||||
hash = "7283a6592eb0f2270f1c4e1188ad7ec1cbabcaf3"
|
||||
mode = "metadata:curseforge"
|
||||
|
||||
[update]
|
||||
[update.curseforge]
|
||||
file-id = 4393343
|
||||
file-id = 4414988
|
||||
project-id = 499980
|
||||
|
@ -1,13 +1,13 @@
|
||||
name = "Simply Swords [Fabric & Forge]"
|
||||
filename = "simplyswords-fabric-1.42.1-1.19.2.jar"
|
||||
filename = "simplyswords-fabric-1.43.1-1.19.2.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
hash-format = "sha1"
|
||||
hash = "269f3d9ac4b88c7545147a9cbea4d128a5502177"
|
||||
hash = "b7f2bc6a1d0de4533c9bd889aa4d9763763005af"
|
||||
mode = "metadata:curseforge"
|
||||
|
||||
[update]
|
||||
[update.curseforge]
|
||||
file-id = 4396689
|
||||
file-id = 4406902
|
||||
project-id = 659887
|
||||
|
@ -1,13 +1,13 @@
|
||||
name = "Spectrum"
|
||||
filename = "spectrum-1.6.6-1.19.2-leisure_time.jar"
|
||||
filename = "spectrum-1.6.7-1.19.2-leisure_time.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
hash-format = "sha1"
|
||||
hash = "eabc6b3062813a7242143b771bb9a0288cd848c8"
|
||||
hash = "35dc85d256f9bf2202677752f441c89955f6c183"
|
||||
mode = "metadata:curseforge"
|
||||
|
||||
[update]
|
||||
[update.curseforge]
|
||||
file-id = 4399506
|
||||
file-id = 4417034
|
||||
project-id = 556967
|
||||
|
@ -1,13 +1,13 @@
|
||||
name = "Spell Engine"
|
||||
filename = "spell_engine-fabric-0.9.10+1.19.jar"
|
||||
filename = "spell_engine-fabric-0.9.14+1.19.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
hash-format = "sha1"
|
||||
hash = "53422074077ab5c6c31f311004df952f356f4887"
|
||||
hash = "cccb1e737262625749f019294b9a83da27d6edbd"
|
||||
mode = "metadata:curseforge"
|
||||
|
||||
[update]
|
||||
[update.curseforge]
|
||||
file-id = 4390818
|
||||
file-id = 4417139
|
||||
project-id = 807653
|
||||
|
@ -1,13 +1,13 @@
|
||||
name = "Spell Power Attributes [Fabric]"
|
||||
filename = "spell_power-fabric-0.9.6+1.19.jar"
|
||||
filename = "spell_power-fabric-0.9.7+1.19.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
hash-format = "sha1"
|
||||
hash = "792119c4f9e310579a24d4f1643703179ec64887"
|
||||
hash = "46385ee4f15db3a5d37e4bf228f24e4e8ee8df05"
|
||||
mode = "metadata:curseforge"
|
||||
|
||||
[update]
|
||||
[update.curseforge]
|
||||
file-id = 4390244
|
||||
file-id = 4413349
|
||||
project-id = 771265
|
||||
|
@ -1,13 +1,13 @@
|
||||
name = "Supplementaries"
|
||||
filename = "supplementaries-1.19.2-2.2.50-fabric.jar"
|
||||
filename = "supplementaries-1.19.2-2.2.54-fabric.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
hash-format = "sha1"
|
||||
hash = "dcd200667934ef74e0229c44b44a2ce3eb577180"
|
||||
hash = "70aa4a41db228561821e3b0853b157e13f635ba9"
|
||||
mode = "metadata:curseforge"
|
||||
|
||||
[update]
|
||||
[update.curseforge]
|
||||
file-id = 4398680
|
||||
file-id = 4418073
|
||||
project-id = 412082
|
||||
|
@ -1,13 +1,13 @@
|
||||
name = "The Bumblezone (Quilt/Fabric)"
|
||||
filename = "the_bumblezone_fabric-6.6.9+1.19.2.jar"
|
||||
filename = "the_bumblezone_fabric-6.6.15+1.19.2.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
hash-format = "sha1"
|
||||
hash = "034e6756b71781881a8d9b05d51eb8d6ea85c1d9"
|
||||
hash = "d544ee136656d33a5924ec51bcf397328c319f98"
|
||||
mode = "metadata:curseforge"
|
||||
|
||||
[update]
|
||||
[update.curseforge]
|
||||
file-id = 4399980
|
||||
file-id = 4417669
|
||||
project-id = 363949
|
||||
|
@ -1,13 +1,13 @@
|
||||
name = "Traveler's Backpack [Fabric]"
|
||||
filename = "travelers-backpack-1.19.2-8.2.13.jar"
|
||||
filename = "travelers-backpack-1.19.2-8.2.14.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
hash-format = "sha1"
|
||||
hash = "9f19e5e7354e58faee35b0af0fabc5830d4c3c3b"
|
||||
hash = "0402e85df75f47ae9a545919f70aaa34828e6b7d"
|
||||
mode = "metadata:curseforge"
|
||||
|
||||
[update]
|
||||
[update.curseforge]
|
||||
file-id = 4386248
|
||||
file-id = 4417207
|
||||
project-id = 541171
|
||||
|
@ -1,13 +1,13 @@
|
||||
name = "Visuality"
|
||||
filename = "visuality-0.5.5.jar"
|
||||
filename = "visuality-0.5.6.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
hash-format = "sha1"
|
||||
hash = "a323e8062960902fde9ee1545ea853c25e7c0eff"
|
||||
hash = "86eafa73e5de6f6aec6401312f3b242a6e48b94b"
|
||||
mode = "metadata:curseforge"
|
||||
|
||||
[update]
|
||||
[update.curseforge]
|
||||
file-id = 4092154
|
||||
file-id = 4418106
|
||||
project-id = 521126
|
||||
|
@ -1,13 +1,13 @@
|
||||
name = "Wizards [Fabric]"
|
||||
filename = "wizards-fabric-0.9.10+1.19.jar"
|
||||
filename = "wizards-fabric-0.9.11+1.19.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
hash-format = "sha1"
|
||||
hash = "e70fbecf16819aa62d37e74abf5d02289d0ddcd5"
|
||||
hash = "6375a3ccaf648a32f9f0c1d20703810d1012f478"
|
||||
mode = "metadata:curseforge"
|
||||
|
||||
[update]
|
||||
[update.curseforge]
|
||||
file-id = 4390835
|
||||
file-id = 4413414
|
||||
project-id = 734325
|
||||
|
@ -1,13 +1,13 @@
|
||||
name = "YUNG's API (Fabric)"
|
||||
filename = "YungsApi-1.19.2-Fabric-3.8.7.jar"
|
||||
filename = "YungsApi-1.19.2-Fabric-3.8.8.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
hash-format = "sha1"
|
||||
hash = "669bcfd69e9f15a06e258635197d1e886e6abd96"
|
||||
hash = "163c183e8fe97fd5ff4ad2d8f81bddbb72314502"
|
||||
mode = "metadata:curseforge"
|
||||
|
||||
[update]
|
||||
[update.curseforge]
|
||||
file-id = 4408065
|
||||
file-id = 4419317
|
||||
project-id = 421649
|
||||
|
@ -1,13 +1,13 @@
|
||||
name = "YUNG's Better Desert Temples (Fabric)"
|
||||
filename = "YungsBetterDesertTemples-1.19.2-Fabric-2.2.1.jar"
|
||||
filename = "YungsBetterDesertTemples-1.19.2-Fabric-2.2.2.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
hash-format = "sha1"
|
||||
hash = "4eb0c721127ba14c79f25d029ba34169471da923"
|
||||
hash = "265b6457f2cd2b92220c87759dc494ed76126ac0"
|
||||
mode = "metadata:curseforge"
|
||||
|
||||
[update]
|
||||
[update.curseforge]
|
||||
file-id = 4031661
|
||||
file-id = 4419321
|
||||
project-id = 631020
|
||||
|
@ -1,13 +1,13 @@
|
||||
name = "All of Fabric 6: Vocality Edition"
|
||||
author = "VF"
|
||||
version = "1.0.0"
|
||||
version = "1.4.4"
|
||||
pack-format = "packwiz:1.1.0"
|
||||
|
||||
[index]
|
||||
file = "index.toml"
|
||||
hash-format = "sha256"
|
||||
hash = "de1c04ef1af93c7317875e25c6a8549888a5b09fa60023b8a64355ff28fb82c3"
|
||||
hash = "6b81c1f49a1860aabd2a758d3cb03d9966341b18442fbbd20581f573904a0d2d"
|
||||
|
||||
[versions]
|
||||
fabric = "0.14.14"
|
||||
fabric = "0.14.17"
|
||||
minecraft = "1.19.2"
|
||||
|
Loading…
Reference in New Issue
Block a user