diff --git a/src/RustPlusBot.Features.Commands/CommandServiceCollectionExtensions.cs b/src/RustPlusBot.Features.Commands/CommandServiceCollectionExtensions.cs index d7c50ade..d24e548a 100644 --- a/src/RustPlusBot.Features.Commands/CommandServiceCollectionExtensions.cs +++ b/src/RustPlusBot.Features.Commands/CommandServiceCollectionExtensions.cs @@ -51,6 +51,7 @@ public static IServiceCollection AddCommands(this IServiceCollection services) services.AddScoped(); services.AddScoped(); services.AddScoped(); + services.AddScoped(); services.AddScoped(); services.AddHostedService(); diff --git a/src/RustPlusBot.Features.Commands/Formatting/DurabilityLine.cs b/src/RustPlusBot.Features.Commands/Formatting/DurabilityLine.cs new file mode 100644 index 00000000..7313539d --- /dev/null +++ b/src/RustPlusBot.Features.Commands/Formatting/DurabilityLine.cs @@ -0,0 +1,57 @@ +using System.Globalization; +using RustPlusBot.Features.ItemData.Data; +using RustPlusBot.Features.ItemData.Naming; + +namespace RustPlusBot.Features.Commands.Formatting; + +/// Formats the multi-line durability (raid-cost) reply for a target. +internal static class DurabilityLine +{ + /// Lists each explosive cost for a target, cheapest by sulfur first. + /// The raid target (with at least one cost). + /// Resolves tool item ids to names. + public static string Format(RaidTarget target, IItemNameResolver names) + { + ArgumentNullException.ThrowIfNull(target); + ArgumentNullException.ThrowIfNull(names); + + var lines = target.Costs + .OrderBy(c => c.Sulfur ?? int.MaxValue) + .ThenBy(c => c.Quantity) + .Select(c => FormatCost(c, names)); + return string.Create(CultureInfo.InvariantCulture, $"{target.Name}:\n{string.Join("\n", lines)}"); + } + + private static string FormatCost(RaidCost cost, IItemNameResolver names) + { + var quantity = (int)Math.Ceiling(cost.Quantity); + var tool = names.Resolve(cost.ToolId); + var side = cost.Side is "soft" or "hard" + ? string.Create(CultureInfo.InvariantCulture, $" ({cost.Side})") + : string.Empty; + var sulfur = cost.Sulfur is { } s + ? string.Create(CultureInfo.InvariantCulture, $" — {s} sulfur") + : string.Empty; + var time = cost.TimeSeconds is { } t and > 0 + ? string.Create(CultureInfo.InvariantCulture, $" ({FormatTime(t)})") + : string.Empty; + var caption = string.IsNullOrEmpty(cost.Caption) + ? string.Empty + : string.Create(CultureInfo.InvariantCulture, $" · {cost.Caption}"); + return string.Create(CultureInfo.InvariantCulture, $"{tool} ×{quantity}{side}{sulfur}{time}{caption}"); + } + + private static string FormatTime(double seconds) + { + if (seconds < 60) + { + return string.Create(CultureInfo.InvariantCulture, $"{seconds:0.#}s"); + } + + var span = TimeSpan.FromSeconds(seconds); + var minutes = (int)span.TotalMinutes; + return span.Seconds == 0 + ? string.Create(CultureInfo.InvariantCulture, $"{minutes}m") + : string.Create(CultureInfo.InvariantCulture, $"{minutes}m {span.Seconds}s"); + } +} diff --git a/src/RustPlusBot.Features.Commands/Handlers/DurabilityCommandHandler.cs b/src/RustPlusBot.Features.Commands/Handlers/DurabilityCommandHandler.cs new file mode 100644 index 00000000..a7bff84e --- /dev/null +++ b/src/RustPlusBot.Features.Commands/Handlers/DurabilityCommandHandler.cs @@ -0,0 +1,35 @@ +using RustPlusBot.Features.Commands.Dispatching; +using RustPlusBot.Features.Commands.Formatting; +using RustPlusBot.Features.ItemData; +using RustPlusBot.Features.ItemData.Lookup; +using RustPlusBot.Features.ItemData.Naming; +using RustPlusBot.Localization; + +namespace RustPlusBot.Features.Commands.Handlers; + +/// !durability — lists the explosives needed to destroy a target. +/// The item database. +/// Resolves tool ids to names. +/// The reply localizer. +internal sealed class DurabilityCommandHandler(IItemDatabase database, IItemNameResolver names, ILocalizer localizer) + : ICommandHandler +{ + /// + public string Name => "durability"; + + /// + public Task ExecuteAsync(CommandContext context, CancellationToken cancellationToken) + { + ArgumentNullException.ThrowIfNull(context); + var query = string.Join(' ', context.Args); + var reply = database.ResolveRaidTarget(query) switch + { + RaidMatch.Found f => + localizer.Get("command.durability.ok", context.Culture, DurabilityLine.Format(f.Target, names)), + RaidMatch.Ambiguous a => localizer.Get("command.item.ambiguous", context.Culture, + string.Join(", ", a.Candidates.Select(c => c.Name))), + _ => localizer.Get("command.item.notfound", context.Culture, query), + }; + return Task.FromResult(reply); + } +} diff --git a/src/RustPlusBot.Features.Commands/Help/CommandHelpCatalog.cs b/src/RustPlusBot.Features.Commands/Help/CommandHelpCatalog.cs index 433b974f..692cfa1e 100644 --- a/src/RustPlusBot.Features.Commands/Help/CommandHelpCatalog.cs +++ b/src/RustPlusBot.Features.Commands/Help/CommandHelpCatalog.cs @@ -31,6 +31,7 @@ internal static class CommandHelpCatalog new("research", CommandGroup.ItemDb, "help.research"), new("decay", CommandGroup.ItemDb, "help.decay"), new("upkeep", CommandGroup.ItemDb, "help.upkeep"), + new("durability", CommandGroup.ItemDb, "help.durability"), ]; /// The Discord slash commands, in display order. @@ -45,5 +46,6 @@ internal static class CommandHelpCatalog new("research", CommandGroup.ItemDb, "help.slash.research"), new("decay", CommandGroup.ItemDb, "help.slash.decay"), new("upkeep", CommandGroup.ItemDb, "help.slash.upkeep"), + new("durability", CommandGroup.ItemDb, "help.slash.durability"), ]; } diff --git a/src/RustPlusBot.Features.Commands/Modules/ItemCommandModule.cs b/src/RustPlusBot.Features.Commands/Modules/ItemCommandModule.cs index 7aa5541b..ad467b22 100644 --- a/src/RustPlusBot.Features.Commands/Modules/ItemCommandModule.cs +++ b/src/RustPlusBot.Features.Commands/Modules/ItemCommandModule.cs @@ -11,7 +11,7 @@ namespace RustPlusBot.Features.Commands.Modules; -/// The /item, /recycle, /craft, /research, /decay, and /upkeep slash commands. +/// The /item, /recycle, /craft, /research, /decay, /upkeep, and /durability slash commands. /// Creates a short-lived DI scope per interaction. public sealed class ItemCommandModule(IServiceScopeFactory scopeFactory) : InteractionModuleBase @@ -63,6 +63,12 @@ public Task UpkeepAsync([Summary("item", "Item name or id")] string item) => ? loc.Get("command.upkeep.ok", culture, UpkeepLine.Format(rec, names)) : loc.Get("command.upkeep.none", culture, rec.Name)); + /// Lists the explosives needed to destroy a target. + /// The item, building block, or vehicle name. + [SlashCommand("durability", "Show the explosives needed to destroy a target")] + public Task DurabilityAsync([Summary("target", "Item, wall/door, or vehicle name")] string target) => + RespondForRaidAsync(target); + private async Task RespondForAsync( string query, Func dateSelector, @@ -98,4 +104,37 @@ private async Task RespondForAsync( await RespondAsync(ephemeral: true, embed: embed).ConfigureAwait(false); } } + + private async Task RespondForRaidAsync(string query) + { + if (Context.Guild is null) + { + await RespondAsync("This command must be used in a server.", ephemeral: true).ConfigureAwait(false); + return; + } + + var scope = scopeFactory.CreateAsyncScope(); + await using (scope.ConfigureAwait(false)) + { + var db = scope.ServiceProvider.GetRequiredService(); + var names = scope.ServiceProvider.GetRequiredService(); + var loc = scope.ServiceProvider.GetRequiredService(); + var workspace = scope.ServiceProvider.GetRequiredService(); + var culture = await workspace.GetCultureAsync(Context.Guild.Id).ConfigureAwait(false); + + var text = db.ResolveRaidTarget(query) switch + { + RaidMatch.Found f => loc.Get("command.durability.ok", culture, DurabilityLine.Format(f.Target, names)), + RaidMatch.Ambiguous a => loc.Get("command.item.ambiguous", culture, + string.Join(", ", a.Candidates.Select(c => c.Name))), + _ => loc.Get("command.item.notfound", culture, query), + }; + + var embed = new EmbedBuilder() + .WithDescription(text) + .WithFooter($"data as of {db.Sources.DurabilityAsOf:yyyy-MM-dd}") + .Build(); + await RespondAsync(ephemeral: true, embed: embed).ConfigureAwait(false); + } + } } diff --git a/src/RustPlusBot.Features.ItemData/Data/ItemDataset.cs b/src/RustPlusBot.Features.ItemData/Data/ItemDataset.cs index 75a8307f..1eea174d 100644 --- a/src/RustPlusBot.Features.ItemData/Data/ItemDataset.cs +++ b/src/RustPlusBot.Features.ItemData/Data/ItemDataset.cs @@ -4,7 +4,12 @@ namespace RustPlusBot.Features.ItemData.Data; /// The schema version; the loader rejects a mismatched bundle. /// Per-section provenance dates. /// Every known item, one record each. -public sealed record ItemDataset(int SchemaVersion, DatasetSources Sources, IReadOnlyList Items); +/// Every raid target (item/building-block/vehicle) and its explosive cost. +public sealed record ItemDataset( + int SchemaVersion, + DatasetSources Sources, + IReadOnlyList Items, + IReadOnlyList RaidTargets); /// When each section of the dataset was last sourced, for "data as of" display. /// Names/ids/stack source date. @@ -13,13 +18,15 @@ public sealed record ItemDataset(int SchemaVersion, DatasetSources Sources, IRea /// Research data source date. /// Decay data source date. /// Upkeep data source date. +/// Durability/raid-cost data source date. public sealed record DatasetSources( DateOnly NamesAsOf, DateOnly RecycleAsOf, DateOnly CraftAsOf, DateOnly ResearchAsOf, DateOnly DecayAsOf, - DateOnly UpkeepAsOf); + DateOnly UpkeepAsOf, + DateOnly DurabilityAsOf); /// One item, with all calculator data inlined (null where not applicable). /// The Rust item id. @@ -91,3 +98,40 @@ public sealed record UpkeepCost(IReadOnlyList Entries); /// The lower bound of the cost. /// The upper bound of the cost. public sealed record UpkeepEntry(int ItemId, int QuantityMin, int QuantityMax); + +/// The kind of raid target, mapping to the three sections of the RustLabs durability source. +public enum RaidTargetKind +{ + /// A deployable item (resolves to a known item id). + Item = 0, + + /// A building block (wall, door, floor) — name-keyed, not an item. + BuildingBlock = 1, + + /// A vehicle or NPC target — name-keyed, not an item. + Vehicle = 2, +} + +/// One raid target and the explosive cost to destroy it. +/// The item id as a string () or the target name otherwise. +/// The display name. +/// The target kind. +/// The per-explosive cost entries (always non-empty). +public sealed record RaidTarget(string Key, string Name, RaidTargetKind Kind, IReadOnlyList Costs); + +/// One explosive's cost against a target. Fields are null where RustLabs omits them. +/// The explosive item id (resolves via the item spine). +/// The building-block face: "soft", "hard", "both", or null. +/// A sub-label (e.g. ammo variant or placement note), or null. +/// Units of the tool required. +/// Total time in seconds, or null. +/// Total sulfur cost, or null. +/// Total low-grade fuel cost, or null. +public sealed record RaidCost( + int ToolId, + string? Side, + string? Caption, + double Quantity, + double? TimeSeconds, + int? Sulfur, + int? Fuel); diff --git a/src/RustPlusBot.Features.ItemData/Data/item-data.json b/src/RustPlusBot.Features.ItemData/Data/item-data.json index c4a53894..760ce9f8 100644 --- a/src/RustPlusBot.Features.ItemData/Data/item-data.json +++ b/src/RustPlusBot.Features.ItemData/Data/item-data.json @@ -1,12 +1,13 @@ { - "schemaVersion": 2, + "schemaVersion": 3, "sources": { "namesAsOf": "2026-04-08", "recycleAsOf": "2024-09-07", "craftAsOf": "2024-09-07", "researchAsOf": "2024-09-07", "decayAsOf": "2024-09-07", - "upkeepAsOf": "2024-09-07" + "upkeepAsOf": "2024-09-07", + "durabilityAsOf": "2024-09-07" }, "items": [ { @@ -28341,5 +28342,51168 @@ "decay": null, "upkeep": null } + ], + "raidTargets": [ + { + "key": "15388698", + "name": "Stone Barricade", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6.15, + "sulfur": 240, + "fuel": null + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 6.1, + "sulfur": 180, + "fuel": null + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 11, + "timeSeconds": 1.75, + "sulfur": 275, + "fuel": null + } + ] + }, + { + "key": "23352662", + "name": "Large Banner Hanging", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 10, + "timeSeconds": 9.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 2800, + "fuel": 60 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 2.4661926096428, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 10, + "timeSeconds": 54, + "sulfur": 2000, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 16, + "timeSeconds": 22.95, + "sulfur": 1920, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 4, + "timeSeconds": 15.5, + "sulfur": null, + "fuel": 20 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 71, + "timeSeconds": 87.7, + "sulfur": 4260, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 25, + "timeSeconds": 19.9, + "sulfur": null, + "fuel": 25 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 31, + "timeSeconds": 20.5, + "sulfur": null, + "fuel": 31 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 10.5, + "sulfur": 960, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 53, + "timeSeconds": 21.775, + "sulfur": 1325, + "fuel": null + } + ] + }, + { + "key": "39600618", + "name": "Microphone Stand", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 4.95, + "sulfur": 120, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 1, + "timeSeconds": 12.5, + "sulfur": null, + "fuel": 5 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 3.7, + "sulfur": 60, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 17.9, + "sulfur": null, + "fuel": 5 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 6, + "timeSeconds": 18, + "sulfur": null, + "fuel": 6 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 3, + "timeSeconds": 1, + "sulfur": 75, + "fuel": null + } + ] + }, + { + "key": "42535890", + "name": "Medium Animated Neon Sign", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 10, + "timeSeconds": 9.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 2800, + "fuel": 60 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 2.4661926096428, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 10, + "timeSeconds": 54, + "sulfur": 2000, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 16, + "timeSeconds": 22.95, + "sulfur": 1920, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 4, + "timeSeconds": 15.5, + "sulfur": null, + "fuel": 20 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 71, + "timeSeconds": 87.7, + "sulfur": 4260, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 25, + "timeSeconds": 19.9, + "sulfur": null, + "fuel": 25 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 31, + "timeSeconds": 20.5, + "sulfur": null, + "fuel": 31 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 10.5, + "sulfur": 960, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 53, + "timeSeconds": 21.775, + "sulfur": 1325, + "fuel": null + } + ] + }, + { + "key": "98508942", + "name": "XXL Picture Frame", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 16, + "timeSeconds": 17.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 12, + "sulfur": 4200, + "fuel": 90 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 4.1103210160714, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 16, + "timeSeconds": 90, + "sulfur": 3200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 26, + "timeSeconds": 34.95, + "sulfur": 3120, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 6, + "timeSeconds": 17.5, + "sulfur": null, + "fuel": 30 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 118, + "timeSeconds": 144.1, + "sulfur": 7080, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 42, + "timeSeconds": 21.6, + "sulfur": null, + "fuel": 42 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 51, + "timeSeconds": 22.5, + "sulfur": null, + "fuel": 51 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 12, + "sulfur": 1440, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 88, + "timeSeconds": 36.35, + "sulfur": 2200, + "fuel": null + } + ] + }, + { + "key": "99588025", + "name": "High External Wooden Wall", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 16, + "timeSeconds": 17.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 12, + "sulfur": 4200, + "fuel": 90 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 41.103210160714, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 18, + "timeSeconds": 102, + "sulfur": 3600, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 11.5, + "sulfur": 4400, + "fuel": 120 + }, + { + "toolId": 1840822026, + "side": null, + "caption": "Stuck (right click)", + "quantity": 26, + "timeSeconds": 100.125, + "sulfur": 3120, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 250, + "timeSeconds": 249, + "sulfur": null, + "fuel": 1250 + }, + { + "toolId": 143803535, + "side": null, + "caption": "Stuck (right click)", + "quantity": 118, + "timeSeconds": 296.75, + "sulfur": 7080, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 412, + "timeSeconds": 72.2, + "sulfur": null, + "fuel": 412 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 509, + "timeSeconds": 78.5, + "sulfur": null, + "fuel": 509 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 7, + "timeSeconds": 24.5, + "sulfur": null, + "fuel": 350 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 6, + "timeSeconds": 16.5, + "sulfur": 2880, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 98, + "timeSeconds": 42.325, + "sulfur": 2450, + "fuel": null + } + ] + }, + { + "key": "121049755", + "name": "Tall Picture Frame", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 7, + "timeSeconds": 8, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1.6441284064285, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 7, + "timeSeconds": 36, + "sulfur": 1400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 11, + "timeSeconds": 16.95, + "sulfur": 1320, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 3, + "timeSeconds": 14.5, + "sulfur": null, + "fuel": 15 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 48, + "timeSeconds": null, + "sulfur": 2880, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 17, + "timeSeconds": 19.1, + "sulfur": null, + "fuel": 17 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 21, + "timeSeconds": 19.5, + "sulfur": null, + "fuel": 21 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 10.5, + "sulfur": 960, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 36, + "timeSeconds": 14.575, + "sulfur": 900, + "fuel": null + } + ] + }, + { + "key": "140006625", + "name": "PTZ CCTV Camera", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 1.6, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 18, + "sulfur": 800, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 8, + "timeSeconds": 13.35, + "sulfur": 960, + "fuel": null + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 20, + "timeSeconds": 26.5, + "sulfur": 1200, + "fuel": null + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 17, + "timeSeconds": 7.025, + "sulfur": 425, + "fuel": null + } + ] + }, + { + "key": "170758448", + "name": "Cockpit With Engine Vehicle Module", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 18, + "timeSeconds": 18, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 12, + "sulfur": 4200, + "fuel": 90 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 170, + "timeSeconds": 1014, + "sulfur": 51000, + "fuel": 12750 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 32, + "timeSeconds": 42.15, + "sulfur": 3840, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 142, + "timeSeconds": 141, + "sulfur": null, + "fuel": 710 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 9, + "timeSeconds": 13.3, + "sulfur": 540, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 2500, + "timeSeconds": 331.5, + "sulfur": null, + "fuel": 2500 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 2125, + "timeSeconds": 260, + "sulfur": null, + "fuel": 2125 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 243, + "timeSeconds": 260.5, + "sulfur": null, + "fuel": 12150 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 13.5, + "sulfur": 1920, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 61, + "timeSeconds": 23.175, + "sulfur": 1525, + "fuel": null + } + ] + }, + { + "key": "177226991", + "name": "Scarecrow", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 1.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 4.1103210160714, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 8.55, + "sulfur": 480, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 6, + "timeSeconds": 17.5, + "sulfur": null, + "fuel": 30 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 7.3, + "sulfur": 240, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 42, + "timeSeconds": 21.6, + "sulfur": null, + "fuel": 42 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 51, + "timeSeconds": 22.5, + "sulfur": null, + "fuel": 51 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 28, + "timeSeconds": 8.95, + "sulfur": 700, + "fuel": null + } + ] + }, + { + "key": "190184021", + "name": "Kayak", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 1.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 8, + "timeSeconds": 42, + "sulfur": 2400, + "fuel": 600 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 8.55, + "sulfur": 480, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 20, + "timeSeconds": 19, + "sulfur": null, + "fuel": 100 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 6.1, + "sulfur": 180, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 118, + "timeSeconds": 15.1, + "sulfur": null, + "fuel": 118 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 100, + "timeSeconds": 9.9, + "sulfur": null, + "fuel": 100 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 12, + "timeSeconds": 29.5, + "sulfur": null, + "fuel": 600 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 23, + "timeSeconds": 8.075, + "sulfur": 575, + "fuel": null + } + ] + }, + { + "key": "198438816", + "name": "Vending Machine", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 8, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 70, + "timeSeconds": 89.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 10, + "timeSeconds": 54, + "sulfur": 14000, + "fuel": 300 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 84, + "timeSeconds": 498, + "sulfur": 16800, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 13, + "sulfur": 6600, + "fuel": 180 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 139, + "timeSeconds": 170.55, + "sulfur": 16680, + "fuel": null + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 1241, + "timeSeconds": 1491.7, + "sulfur": 74460, + "fuel": null + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 15, + "timeSeconds": 30, + "sulfur": 7200, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 499, + "timeSeconds": 218.125, + "sulfur": 12475, + "fuel": null + } + ] + }, + { + "key": "240752557", + "name": "Tall Weapon Rack", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 1.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 3.2882568128571, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 8.55, + "sulfur": 480, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 5, + "timeSeconds": 16.5, + "sulfur": null, + "fuel": 25 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 6.1, + "sulfur": 180, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 33, + "timeSeconds": 20.7, + "sulfur": null, + "fuel": 33 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 41, + "timeSeconds": 21.5, + "sulfur": null, + "fuel": 41 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 23, + "timeSeconds": 8.075, + "sulfur": 575, + "fuel": null + } + ] + }, + { + "key": "261913429", + "name": "White Volcano Firework", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 4.95, + "sulfur": 120, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 1, + "timeSeconds": 12.5, + "sulfur": null, + "fuel": 5 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 3.7, + "sulfur": 60, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 9, + "timeSeconds": 18.3, + "sulfur": null, + "fuel": 9 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 11, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 11 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 3, + "timeSeconds": 1, + "sulfur": 75, + "fuel": null + } + ] + }, + { + "key": "268565518", + "name": "Storage Vehicle Module", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 12, + "timeSeconds": 10, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 2800, + "fuel": 60 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 110, + "timeSeconds": 654, + "sulfur": 33000, + "fuel": 8250 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 21, + "timeSeconds": 28.95, + "sulfur": 2520, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 92, + "timeSeconds": 91, + "sulfur": null, + "fuel": 460 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 6, + "timeSeconds": 9.7, + "sulfur": 360, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 1618, + "timeSeconds": 216.1, + "sulfur": null, + "fuel": 1618 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 1375, + "timeSeconds": 168, + "sulfur": null, + "fuel": 1375 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 158, + "timeSeconds": 175.5, + "sulfur": null, + "fuel": 7900 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 12, + "sulfur": 1440, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 40, + "timeSeconds": 15.275, + "sulfur": 1000, + "fuel": null + } + ] + }, + { + "key": "282103175", + "name": "Giant Lollipop Decor", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 2.4661926096428, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 7.35, + "sulfur": 360, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 4, + "timeSeconds": 15.5, + "sulfur": null, + "fuel": 20 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 4.9, + "sulfur": 120, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 25, + "timeSeconds": 19.9, + "sulfur": null, + "fuel": 25 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 31, + "timeSeconds": 20.5, + "sulfur": null, + "fuel": 31 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 17, + "timeSeconds": 7.025, + "sulfur": 425, + "fuel": null + } + ] + }, + { + "key": "286648290", + "name": "Disco Floor", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 4.95, + "sulfur": 120, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 2, + "timeSeconds": 13.5, + "sulfur": null, + "fuel": 10 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 3.7, + "sulfur": 60, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 9, + "timeSeconds": 18.3, + "sulfur": null, + "fuel": 9 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 11, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 11 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 6, + "timeSeconds": 1, + "sulfur": 150, + "fuel": null + } + ] + }, + { + "key": "352499047", + "name": "Shotgun Trap", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 8, + "timeSeconds": 8.4, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 2800, + "fuel": 60 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 7, + "timeSeconds": 12.15, + "sulfur": 840, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 75, + "timeSeconds": 74, + "sulfur": null, + "fuel": 375 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 8.5, + "sulfur": 300, + "fuel": null + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 34, + "timeSeconds": 14.225, + "sulfur": 850, + "fuel": null + } + ] + }, + { + "key": "359723196", + "name": "Chippy Arcade Game", + "kind": 0, + "costs": [ + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 50, + "timeSeconds": 49, + "sulfur": null, + "fuel": 250 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 10.5, + "sulfur": 960, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 56, + "timeSeconds": 22.3, + "sulfur": 1400, + "fuel": null + } + ] + }, + { + "key": "443432036", + "name": "Fluid Switch \u0026 Pump", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 1.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 3.2882568128571, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 24, + "sulfur": 1000, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 8.55, + "sulfur": 480, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 5, + "timeSeconds": 16.5, + "sulfur": null, + "fuel": 25 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 7.3, + "sulfur": 240, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 33, + "timeSeconds": 20.7, + "sulfur": null, + "fuel": 33 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 41, + "timeSeconds": 21.5, + "sulfur": null, + "fuel": 41 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 23, + "timeSeconds": 8.075, + "sulfur": 575, + "fuel": null + } + ] + }, + { + "key": "446206234", + "name": "Torch Holder", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 7.35, + "sulfur": 360, + "fuel": null + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 7, + "timeSeconds": 10.9, + "sulfur": 420, + "fuel": null + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 6, + "timeSeconds": 1, + "sulfur": 150, + "fuel": null + } + ] + }, + { + "key": "486661382", + "name": "Clan Table", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 1.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 4.1103210160714, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 8.55, + "sulfur": 480, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 6, + "timeSeconds": 17.5, + "sulfur": null, + "fuel": 30 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 7.3, + "sulfur": 240, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 42, + "timeSeconds": 21.6, + "sulfur": null, + "fuel": 42 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 51, + "timeSeconds": 22.5, + "sulfur": null, + "fuel": 51 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 28, + "timeSeconds": 8.95, + "sulfur": 700, + "fuel": null + } + ] + }, + { + "key": "492357192", + "name": "RAND Switch", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 1.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 3.2882568128571, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 24, + "sulfur": 1000, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 8.55, + "sulfur": 480, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 5, + "timeSeconds": 16.5, + "sulfur": null, + "fuel": 25 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 7.3, + "sulfur": 240, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 33, + "timeSeconds": 20.7, + "sulfur": null, + "fuel": 33 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 41, + "timeSeconds": 21.5, + "sulfur": null, + "fuel": 41 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 23, + "timeSeconds": 8.075, + "sulfur": 575, + "fuel": null + } + ] + }, + { + "key": "528668503", + "name": "Flame Turret", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 8, + "timeSeconds": 8.4, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 2800, + "fuel": 60 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 7, + "timeSeconds": 12.15, + "sulfur": 840, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 75, + "timeSeconds": 74, + "sulfur": null, + "fuel": 375 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 8.5, + "sulfur": 300, + "fuel": null + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 34, + "timeSeconds": 14.225, + "sulfur": 850, + "fuel": null + } + ] + }, + { + "key": "553270375", + "name": "Large Rechargeable Battery", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 6, + "timeSeconds": 2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 16.441284064285, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 7, + "timeSeconds": 36, + "sulfur": 1400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 12, + "timeSeconds": 18.15, + "sulfur": 1440, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 23, + "timeSeconds": 34.5, + "sulfur": null, + "fuel": 115 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 58, + "timeSeconds": 72.1, + "sulfur": 3480, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 165, + "timeSeconds": 37.3, + "sulfur": null, + "fuel": 165 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 204, + "timeSeconds": 41.2, + "sulfur": null, + "fuel": 204 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 20.5, + "sulfur": null, + "fuel": 150 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 10.5, + "sulfur": 960, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 35, + "timeSeconds": 14.4, + "sulfur": 875, + "fuel": null + } + ] + }, + { + "key": "553887414", + "name": "Skull Fire Pit", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 4.95, + "sulfur": 120, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 2, + "timeSeconds": 13.5, + "sulfur": null, + "fuel": 10 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 3.7, + "sulfur": 60, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 9, + "timeSeconds": 18.3, + "sulfur": null, + "fuel": 9 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 11, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 11 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 6, + "timeSeconds": 1, + "sulfur": 150, + "fuel": null + } + ] + }, + { + "key": "559147458", + "name": "Survival Fish Trap", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1.6441284064285, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6.15, + "sulfur": 240, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 3, + "timeSeconds": 14.5, + "sulfur": null, + "fuel": 15 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 4.9, + "sulfur": 120, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 17, + "timeSeconds": 19.1, + "sulfur": null, + "fuel": 17 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 21, + "timeSeconds": 19.5, + "sulfur": null, + "fuel": 21 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 12, + "timeSeconds": 1.925, + "sulfur": 300, + "fuel": null + } + ] + }, + { + "key": "567871954", + "name": "Secretlab Chair", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1.6441284064285, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6.15, + "sulfur": 240, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 3, + "timeSeconds": 14.5, + "sulfur": null, + "fuel": 15 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 4.9, + "sulfur": 120, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 17, + "timeSeconds": 19.1, + "sulfur": null, + "fuel": 17 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 21, + "timeSeconds": 19.5, + "sulfur": null, + "fuel": 21 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 12, + "timeSeconds": 1.925, + "sulfur": 300, + "fuel": null + } + ] + }, + { + "key": "573676040", + "name": "Coffin", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 1.6, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 4.9323852192856, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 9.75, + "sulfur": 600, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 7, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 35 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 7.3, + "sulfur": 240, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 50, + "timeSeconds": 22.4, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 62, + "timeSeconds": 23.6, + "sulfur": null, + "fuel": 62 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 34, + "timeSeconds": 14.225, + "sulfur": 850, + "fuel": null + } + ] + }, + { + "key": "593465182", + "name": "Table", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 1.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 3.2882568128571, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 8.55, + "sulfur": 480, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 5, + "timeSeconds": 16.5, + "sulfur": null, + "fuel": 25 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 6.1, + "sulfur": 180, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 33, + "timeSeconds": 20.7, + "sulfur": null, + "fuel": 33 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 41, + "timeSeconds": 21.5, + "sulfur": null, + "fuel": 41 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 23, + "timeSeconds": 8.075, + "sulfur": 575, + "fuel": null + } + ] + }, + { + "key": "607400343", + "name": "Legacy Wood Shelter", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 7, + "timeSeconds": 8, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 20.551605080357, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 8, + "timeSeconds": 42, + "sulfur": 1600, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 15, + "timeSeconds": 21.75, + "sulfur": 1800, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 125, + "timeSeconds": 124, + "sulfur": null, + "fuel": 625 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 58, + "timeSeconds": 72.1, + "sulfur": 3480, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 206, + "timeSeconds": 44.8, + "sulfur": null, + "fuel": 206 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 255, + "timeSeconds": 46.3, + "sulfur": null, + "fuel": 255 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 21.5, + "sulfur": null, + "fuel": 200 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 12, + "sulfur": 1440, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 42, + "timeSeconds": 15.625, + "sulfur": 1050, + "fuel": null + } + ] + }, + { + "key": "610102428", + "name": "Industrial Conveyor", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 1.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 3.2882568128571, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 24, + "sulfur": 1000, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 8.55, + "sulfur": 480, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 5, + "timeSeconds": 16.5, + "sulfur": null, + "fuel": 25 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 7.3, + "sulfur": 240, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 33, + "timeSeconds": 20.7, + "sulfur": null, + "fuel": 33 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 41, + "timeSeconds": 21.5, + "sulfur": null, + "fuel": 41 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 23, + "timeSeconds": 8.075, + "sulfur": 575, + "fuel": null + } + ] + }, + { + "key": "615112838", + "name": "Rail Road Planter", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 1.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 4.1103210160714, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 8.55, + "sulfur": 480, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 6, + "timeSeconds": 17.5, + "sulfur": null, + "fuel": 30 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 7.3, + "sulfur": 240, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 42, + "timeSeconds": 21.6, + "sulfur": null, + "fuel": 42 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 51, + "timeSeconds": 22.5, + "sulfur": null, + "fuel": 51 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 28, + "timeSeconds": 8.95, + "sulfur": 700, + "fuel": null + } + ] + }, + { + "key": "634478325", + "name": "CCTV Camera", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 1.6, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 18, + "sulfur": 800, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 8, + "timeSeconds": 13.35, + "sulfur": 960, + "fuel": null + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 20, + "timeSeconds": 26.5, + "sulfur": 1200, + "fuel": null + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 17, + "timeSeconds": 7.025, + "sulfur": 425, + "fuel": null + } + ] + }, + { + "key": "657352755", + "name": "Beach Table", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 1.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 3.2882568128571, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 8.55, + "sulfur": 480, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 5, + "timeSeconds": 16.5, + "sulfur": null, + "fuel": 25 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 6.1, + "sulfur": 180, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 33, + "timeSeconds": 20.7, + "sulfur": null, + "fuel": 33 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 41, + "timeSeconds": 21.5, + "sulfur": null, + "fuel": 41 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 23, + "timeSeconds": 8.075, + "sulfur": 575, + "fuel": null + } + ] + }, + { + "key": "665332906", + "name": "Timer", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 1.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 3.2882568128571, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 24, + "sulfur": 1000, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 8.55, + "sulfur": 480, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 5, + "timeSeconds": 16.5, + "sulfur": null, + "fuel": 25 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 7.3, + "sulfur": 240, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 33, + "timeSeconds": 20.7, + "sulfur": null, + "fuel": 33 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 41, + "timeSeconds": 21.5, + "sulfur": null, + "fuel": 41 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 23, + "timeSeconds": 8.075, + "sulfur": 575, + "fuel": null + } + ] + }, + { + "key": "671706427", + "name": "Reinforced Glass Window", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 29, + "timeSeconds": 33.6, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 18, + "sulfur": 5600, + "fuel": 120 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 34, + "timeSeconds": 198, + "sulfur": 6800, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 11.5, + "sulfur": 4400, + "fuel": 120 + }, + { + "toolId": 1840822026, + "side": null, + "caption": "Stuck (right click)", + "quantity": 56, + "timeSeconds": 212.625, + "sulfur": 6720, + "fuel": null + }, + { + "toolId": 143803535, + "side": null, + "caption": "Stuck (right click)", + "quantity": 497, + "timeSeconds": 1244.25, + "sulfur": 29820, + "fuel": null + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 12, + "timeSeconds": 25.5, + "sulfur": 5760, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 200, + "timeSeconds": 85.525, + "sulfur": 5000, + "fuel": null + } + ] + }, + { + "key": "674734128", + "name": "Festive Doorway Garland", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 1.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 8.2206420321427, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 18, + "sulfur": 800, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": "Stuck (right click)", + "quantity": 6, + "timeSeconds": 25.125, + "sulfur": 720, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 50, + "timeSeconds": 49, + "sulfur": null, + "fuel": 250 + }, + { + "toolId": 143803535, + "side": null, + "caption": "Stuck (right click)", + "quantity": 24, + "timeSeconds": 61.75, + "sulfur": 1440, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 83, + "timeSeconds": 25.7, + "sulfur": null, + "fuel": 83 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 102, + "timeSeconds": 27.6, + "sulfur": null, + "fuel": 102 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 19.5, + "sulfur": null, + "fuel": 100 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 10.5, + "sulfur": 960, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 20, + "timeSeconds": 7.55, + "sulfur": 500, + "fuel": null + } + ] + }, + { + "key": "699075597", + "name": "Wooden Cross", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1.6441284064285, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6.15, + "sulfur": 240, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 3, + "timeSeconds": 14.5, + "sulfur": null, + "fuel": 15 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 4.9, + "sulfur": 120, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 17, + "timeSeconds": 19.1, + "sulfur": null, + "fuel": 17 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 21, + "timeSeconds": 19.5, + "sulfur": null, + "fuel": 21 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 12, + "timeSeconds": 1.925, + "sulfur": 300, + "fuel": null + } + ] + }, + { + "key": "742745918", + "name": "Industrial Splitter", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 1.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 3.2882568128571, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 24, + "sulfur": 1000, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 8.55, + "sulfur": 480, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 5, + "timeSeconds": 16.5, + "sulfur": null, + "fuel": 25 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 7.3, + "sulfur": 240, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 33, + "timeSeconds": 20.7, + "sulfur": null, + "fuel": 33 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 41, + "timeSeconds": 21.5, + "sulfur": null, + "fuel": 41 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 23, + "timeSeconds": 8.075, + "sulfur": 575, + "fuel": null + } + ] + }, + { + "key": "762289806", + "name": "Siren Light", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 1.6, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 12.330963048214, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 24, + "sulfur": 1000, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 9, + "timeSeconds": 14.55, + "sulfur": 1080, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 17, + "timeSeconds": 28.5, + "sulfur": null, + "fuel": 85 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 43, + "timeSeconds": 54.1, + "sulfur": 2580, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 124, + "timeSeconds": 33.2, + "sulfur": null, + "fuel": 124 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 153, + "timeSeconds": 36.1, + "sulfur": null, + "fuel": 153 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 20.5, + "sulfur": null, + "fuel": 150 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 26, + "timeSeconds": 8.6, + "sulfur": 650, + "fuel": null + } + ] + }, + { + "key": "782422285", + "name": "Sofa - Pattern", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 1.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 3.2882568128571, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 8.55, + "sulfur": 480, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 5, + "timeSeconds": 16.5, + "sulfur": null, + "fuel": 25 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 6.1, + "sulfur": 180, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 33, + "timeSeconds": 20.7, + "sulfur": null, + "fuel": 33 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 41, + "timeSeconds": 21.5, + "sulfur": null, + "fuel": 41 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 23, + "timeSeconds": 8.075, + "sulfur": 575, + "fuel": null + } + ] + }, + { + "key": "794443127", + "name": "Christmas Tree", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 16, + "timeSeconds": 17.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 18, + "sulfur": 5600, + "fuel": 120 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 16.441284064285, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 6, + "timeSeconds": 30, + "sulfur": 1200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 16, + "timeSeconds": 22.95, + "sulfur": 1920, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 23, + "timeSeconds": 34.5, + "sulfur": null, + "fuel": 115 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 13, + "timeSeconds": 18.1, + "sulfur": 780, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 165, + "timeSeconds": 37.3, + "sulfur": null, + "fuel": 165 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 204, + "timeSeconds": 41.2, + "sulfur": null, + "fuel": 204 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 20.5, + "sulfur": null, + "fuel": 150 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 10.5, + "sulfur": 960, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 112, + "timeSeconds": 44.775, + "sulfur": 2800, + "fuel": null + } + ] + }, + { + "key": "803222026", + "name": "Repair Bench", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 1.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 3.2882568128571, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 8.55, + "sulfur": 480, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 5, + "timeSeconds": 16.5, + "sulfur": null, + "fuel": 25 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 6.1, + "sulfur": 180, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 33, + "timeSeconds": 20.7, + "sulfur": null, + "fuel": 33 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 41, + "timeSeconds": 21.5, + "sulfur": null, + "fuel": 41 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 23, + "timeSeconds": 8.075, + "sulfur": 575, + "fuel": null + } + ] + }, + { + "key": "809199956", + "name": "Gravestone", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 12, + "timeSeconds": 10, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 2800, + "fuel": 60 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 32.882568128571, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 13, + "timeSeconds": 72, + "sulfur": 2600, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 24, + "timeSeconds": 32.55, + "sulfur": 2880, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 45, + "timeSeconds": 56.5, + "sulfur": null, + "fuel": 225 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 115, + "timeSeconds": 140.5, + "sulfur": 6900, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 330, + "timeSeconds": null, + "sulfur": null, + "fuel": 330 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 407, + "timeSeconds": 64.9, + "sulfur": null, + "fuel": 407 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 6, + "timeSeconds": 23.5, + "sulfur": null, + "fuel": 300 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 12, + "sulfur": 1440, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 69, + "timeSeconds": 28.8, + "sulfur": 1725, + "fuel": null + } + ] + }, + { + "key": "826309791", + "name": "Two Sided Town Sign Post", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 16, + "timeSeconds": 17.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 12, + "sulfur": 4200, + "fuel": 90 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 4.1103210160714, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 16, + "timeSeconds": 90, + "sulfur": 3200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 26, + "timeSeconds": 34.95, + "sulfur": 3120, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 6, + "timeSeconds": 17.5, + "sulfur": null, + "fuel": 30 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 118, + "timeSeconds": 144.1, + "sulfur": 7080, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 42, + "timeSeconds": 21.6, + "sulfur": null, + "fuel": 42 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 51, + "timeSeconds": 22.5, + "sulfur": null, + "fuel": 51 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 12, + "sulfur": 1440, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 88, + "timeSeconds": 36.35, + "sulfur": 2200, + "fuel": null + } + ] + }, + { + "key": "833533164", + "name": "Large Wood Box", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 1.6, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 4.9323852192856, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 9.75, + "sulfur": 600, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 7, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 35 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 7.3, + "sulfur": 240, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 50, + "timeSeconds": 22.4, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 62, + "timeSeconds": 23.6, + "sulfur": null, + "fuel": 62 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 34, + "timeSeconds": 14.225, + "sulfur": 850, + "fuel": null + } + ] + }, + { + "key": "853471967", + "name": "Laser Light", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 4.95, + "sulfur": 120, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 2, + "timeSeconds": 13.5, + "sulfur": null, + "fuel": 10 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 3.7, + "sulfur": 60, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 9, + "timeSeconds": 18.3, + "sulfur": null, + "fuel": 9 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 11, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 11 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 6, + "timeSeconds": 1, + "sulfur": 150, + "fuel": null + } + ] + }, + { + "key": "866332017", + "name": "Large Neon Sign", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 10, + "timeSeconds": 9.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 2800, + "fuel": 60 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 2.4661926096428, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 10, + "timeSeconds": 54, + "sulfur": 2000, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 16, + "timeSeconds": 22.95, + "sulfur": 1920, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 4, + "timeSeconds": 15.5, + "sulfur": null, + "fuel": 20 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 71, + "timeSeconds": 87.7, + "sulfur": 4260, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 25, + "timeSeconds": 19.9, + "sulfur": null, + "fuel": 25 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 31, + "timeSeconds": 20.5, + "sulfur": null, + "fuel": 31 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 10.5, + "sulfur": 960, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 53, + "timeSeconds": 21.775, + "sulfur": 1325, + "fuel": null + } + ] + }, + { + "key": "866889860", + "name": "Wooden Barricade", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 1.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 4.1103210160714, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 24, + "sulfur": 1000, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 8.55, + "sulfur": 480, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 6, + "timeSeconds": 17.5, + "sulfur": null, + "fuel": 30 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 8.5, + "sulfur": 300, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 42, + "timeSeconds": 21.6, + "sulfur": null, + "fuel": 42 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 51, + "timeSeconds": 22.5, + "sulfur": null, + "fuel": 51 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 22, + "timeSeconds": 7.9, + "sulfur": 550, + "fuel": null + } + ] + }, + { + "key": "882559853", + "name": "Spider Webs", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6.15, + "sulfur": 240, + "fuel": null + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 7.3, + "sulfur": 240, + "fuel": null + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 3, + "timeSeconds": 1, + "sulfur": 75, + "fuel": null + } + ] + }, + { + "key": "888415708", + "name": "RF Receiver", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 7.35, + "sulfur": 360, + "fuel": null + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 7, + "timeSeconds": 10.9, + "sulfur": 420, + "fuel": null + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 6, + "timeSeconds": 1, + "sulfur": 150, + "fuel": null + } + ] + }, + { + "key": "895374329", + "name": "Passenger Vehicle Module", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 23, + "timeSeconds": 25.6, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 18, + "sulfur": 5600, + "fuel": 120 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 210, + "timeSeconds": 1254, + "sulfur": 63000, + "fuel": 15750 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 12, + "sulfur": 600, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 39, + "timeSeconds": 50.55, + "sulfur": 4680, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 175, + "timeSeconds": 174, + "sulfur": null, + "fuel": 875 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 11, + "timeSeconds": 15.7, + "sulfur": 660, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 3089, + "timeSeconds": 410.8, + "sulfur": null, + "fuel": 3089 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 2625, + "timeSeconds": 320.2, + "sulfur": null, + "fuel": 2625 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 300, + "timeSeconds": 317.5, + "sulfur": null, + "fuel": 15000 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 15, + "sulfur": 2400, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 75, + "timeSeconds": 29.85, + "sulfur": 1875, + "fuel": null + } + ] + }, + { + "key": "936496778", + "name": "Floor grill", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "both", + "caption": null, + "quantity": 9, + "timeSeconds": 8.8, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": "both", + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 2800, + "fuel": 60 + }, + { + "toolId": -1841918730, + "side": "both", + "caption": null, + "quantity": 11, + "timeSeconds": null, + "sulfur": 2200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 18, + "timeSeconds": 70.125, + "sulfur": 2160, + "fuel": null + }, + { + "toolId": 143803535, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 50, + "timeSeconds": 126.75, + "sulfur": 3000, + "fuel": null + }, + { + "toolId": -1878475007, + "side": "both", + "caption": null, + "quantity": 4, + "timeSeconds": 13.5, + "sulfur": 1920, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "both", + "caption": "Semi-Automatic Rifle", + "quantity": 63, + "timeSeconds": 23.525, + "sulfur": 1575, + "fuel": null + } + ] + }, + { + "key": "960673498", + "name": "Large Hunting Trophy", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 1.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 18, + "sulfur": 800, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 6, + "timeSeconds": 10.95, + "sulfur": 720, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 2, + "timeSeconds": 13.5, + "sulfur": null, + "fuel": 10 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 24, + "timeSeconds": 31.3, + "sulfur": 1440, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 9, + "timeSeconds": 18.3, + "sulfur": null, + "fuel": 9 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 11, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 11 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 18, + "timeSeconds": 7.2, + "sulfur": 450, + "fuel": null + } + ] + }, + { + "key": "962186730", + "name": "Tin Can Alarm", + "kind": 0, + "costs": [ + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 9, + "timeSeconds": 8, + "sulfur": null, + "fuel": 45 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 7, + "timeSeconds": 1.05, + "sulfur": 175, + "fuel": null + } + ] + }, + { + "key": "968421290", + "name": "Connected Speaker", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 4.95, + "sulfur": 120, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 2, + "timeSeconds": 13.5, + "sulfur": null, + "fuel": 10 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 3.7, + "sulfur": 60, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 9, + "timeSeconds": 18.3, + "sulfur": null, + "fuel": 9 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 11, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 11 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 6, + "timeSeconds": 1, + "sulfur": 150, + "fuel": null + } + ] + }, + { + "key": "975983052", + "name": "Twitch Rivals Trophy", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 4.95, + "sulfur": 120, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 1, + "timeSeconds": 12.5, + "sulfur": null, + "fuel": 5 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 3.7, + "sulfur": 60, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 17.9, + "sulfur": null, + "fuel": 5 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 6, + "timeSeconds": 18, + "sulfur": null, + "fuel": 6 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 2, + "timeSeconds": 1, + "sulfur": 50, + "fuel": null + } + ] + }, + { + "key": "988652725", + "name": "Smart Switch", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 1.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 3.2882568128571, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 24, + "sulfur": 1000, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 8.55, + "sulfur": 480, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 5, + "timeSeconds": 16.5, + "sulfur": null, + "fuel": 25 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 7.3, + "sulfur": 240, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 33, + "timeSeconds": 20.7, + "sulfur": null, + "fuel": 33 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 41, + "timeSeconds": 21.5, + "sulfur": null, + "fuel": 41 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 23, + "timeSeconds": 8.075, + "sulfur": 575, + "fuel": null + } + ] + }, + { + "key": "1058261682", + "name": "Christmas Lights", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 6, + "timeSeconds": 2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 2800, + "fuel": 60 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 4.1103210160714, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 9.75, + "sulfur": 600, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 4, + "timeSeconds": 15.5, + "sulfur": null, + "fuel": 20 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 6.1, + "sulfur": 180, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 42, + "timeSeconds": 21.6, + "sulfur": null, + "fuel": 42 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 51, + "timeSeconds": 22.5, + "sulfur": null, + "fuel": 51 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 12, + "timeSeconds": 1.925, + "sulfur": 300, + "fuel": null + } + ] + }, + { + "key": "1099314009", + "name": "Barbeque", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 1.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 3.2882568128571, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 8.55, + "sulfur": 480, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 5, + "timeSeconds": 16.5, + "sulfur": null, + "fuel": 25 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 6.1, + "sulfur": 180, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 33, + "timeSeconds": 20.7, + "sulfur": null, + "fuel": 33 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 41, + "timeSeconds": 21.5, + "sulfur": null, + "fuel": 41 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 23, + "timeSeconds": 8.075, + "sulfur": 575, + "fuel": null + } + ] + }, + { + "key": "1132603396", + "name": "Weapon Rack Stand", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1.6441284064285, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6.15, + "sulfur": 240, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 3, + "timeSeconds": 14.5, + "sulfur": null, + "fuel": 15 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 4.9, + "sulfur": 120, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 17, + "timeSeconds": 19.1, + "sulfur": null, + "fuel": 17 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 21, + "timeSeconds": 19.5, + "sulfur": null, + "fuel": 21 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 12, + "timeSeconds": 1.925, + "sulfur": 300, + "fuel": null + } + ] + }, + { + "key": "1142993169", + "name": "Ceiling Light", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 1.6, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 12.330963048214, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 9.75, + "sulfur": 600, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 14, + "timeSeconds": 25.5, + "sulfur": null, + "fuel": 70 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 6.1, + "sulfur": 180, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 124, + "timeSeconds": 33.2, + "sulfur": null, + "fuel": 124 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 153, + "timeSeconds": 36.1, + "sulfur": null, + "fuel": 153 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 20.5, + "sulfur": null, + "fuel": 150 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 34, + "timeSeconds": 14.225, + "sulfur": 850, + "fuel": null + } + ] + }, + { + "key": "1153652756", + "name": "Large Wooden Sign", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 1.6, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1.2330963048214, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 24, + "sulfur": 1000, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 8, + "timeSeconds": 13.35, + "sulfur": 960, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 2, + "timeSeconds": 13.5, + "sulfur": null, + "fuel": 10 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 36, + "timeSeconds": 45.7, + "sulfur": 2160, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 13, + "timeSeconds": 18.7, + "sulfur": null, + "fuel": 13 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 16, + "timeSeconds": 19, + "sulfur": null, + "fuel": 16 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 27, + "timeSeconds": 8.775, + "sulfur": 675, + "fuel": null + } + ] + }, + { + "key": "1160881421", + "name": "Hitch \u0026 Trough", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 1.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 4.1103210160714, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 8.55, + "sulfur": 480, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 6, + "timeSeconds": 17.5, + "sulfur": null, + "fuel": 30 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 7.3, + "sulfur": 240, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 42, + "timeSeconds": 21.6, + "sulfur": null, + "fuel": 42 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 51, + "timeSeconds": 22.5, + "sulfur": null, + "fuel": 51 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 28, + "timeSeconds": 8.95, + "sulfur": 700, + "fuel": null + } + ] + }, + { + "key": "1171735914", + "name": "AND Switch", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 1.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 3.2882568128571, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 24, + "sulfur": 1000, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 8.55, + "sulfur": 480, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 5, + "timeSeconds": 16.5, + "sulfur": null, + "fuel": 25 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 7.3, + "sulfur": 240, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 33, + "timeSeconds": 20.7, + "sulfur": null, + "fuel": 33 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 41, + "timeSeconds": 21.5, + "sulfur": null, + "fuel": 41 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 23, + "timeSeconds": 8.075, + "sulfur": 575, + "fuel": null + } + ] + }, + { + "key": "1177596584", + "name": "Elevator", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 34, + "timeSeconds": 41.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 24, + "sulfur": 7000, + "fuel": 150 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 104.64770438571, + "sulfur": 600, + "fuel": 150 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 37, + "timeSeconds": 216, + "sulfur": 7400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 11.5, + "sulfur": 4400, + "fuel": 120 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 71, + "timeSeconds": 88.95, + "sulfur": 8520, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 133, + "timeSeconds": 144.5, + "sulfur": null, + "fuel": 665 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 343, + "timeSeconds": 414.1, + "sulfur": 20580, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 988, + "timeSeconds": 146.8, + "sulfur": null, + "fuel": 988 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 1221, + "timeSeconds": 166.7, + "sulfur": null, + "fuel": 1221 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 17, + "timeSeconds": 34.5, + "sulfur": null, + "fuel": 850 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 8, + "timeSeconds": 19.5, + "sulfur": 3840, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 207, + "timeSeconds": 86.75, + "sulfur": 5175, + "fuel": null + } + ] + }, + { + "key": "1186655046", + "name": "Fuel Tank Vehicle Module", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 14, + "timeSeconds": 16.4, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 2800, + "fuel": 60 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 130, + "timeSeconds": 774, + "sulfur": 39000, + "fuel": 9750 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 25, + "timeSeconds": 33.75, + "sulfur": 3000, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 109, + "timeSeconds": 108, + "sulfur": null, + "fuel": 545 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 7, + "timeSeconds": 10.9, + "sulfur": 420, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 1912, + "timeSeconds": 255.7, + "sulfur": null, + "fuel": 1912 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 1625, + "timeSeconds": 196.4, + "sulfur": null, + "fuel": 1625 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 186, + "timeSeconds": 203.5, + "sulfur": null, + "fuel": 9300 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 12, + "sulfur": 1440, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 47, + "timeSeconds": 16.5, + "sulfur": 1175, + "fuel": null + } + ] + }, + { + "key": "1205084994", + "name": "Large Photo Frame", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 16, + "timeSeconds": 17.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 12, + "sulfur": 4200, + "fuel": 90 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 4.1103210160714, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 16, + "timeSeconds": 90, + "sulfur": 3200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 26, + "timeSeconds": 34.95, + "sulfur": 3120, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 6, + "timeSeconds": 17.5, + "sulfur": null, + "fuel": 30 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 118, + "timeSeconds": 144.1, + "sulfur": 7080, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 42, + "timeSeconds": 21.6, + "sulfur": null, + "fuel": 42 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 51, + "timeSeconds": 22.5, + "sulfur": null, + "fuel": 51 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 12, + "sulfur": 1440, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 88, + "timeSeconds": 36.35, + "sulfur": 2200, + "fuel": null + } + ] + }, + { + "key": "1205607945", + "name": "Two Sided Hanging Sign", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 10, + "timeSeconds": 9.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 2800, + "fuel": 60 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 2.4661926096428, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 10, + "timeSeconds": 54, + "sulfur": 2000, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 16, + "timeSeconds": 22.95, + "sulfur": 1920, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 4, + "timeSeconds": 15.5, + "sulfur": null, + "fuel": 20 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 71, + "timeSeconds": 87.7, + "sulfur": 4260, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 25, + "timeSeconds": 19.9, + "sulfur": null, + "fuel": 25 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 31, + "timeSeconds": 20.5, + "sulfur": null, + "fuel": 31 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 10.5, + "sulfur": 960, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 53, + "timeSeconds": 21.775, + "sulfur": 1325, + "fuel": null + } + ] + }, + { + "key": "1221063409", + "name": "Armored Double Door", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 36, + "timeSeconds": 42, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 24, + "sulfur": 7000, + "fuel": 150 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 42, + "timeSeconds": 246, + "sulfur": 8400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 13, + "sulfur": 6600, + "fuel": 180 + }, + { + "toolId": 1840822026, + "side": null, + "caption": "Stuck (right click)", + "quantity": 69, + "timeSeconds": 261.375, + "sulfur": 8280, + "fuel": null + }, + { + "toolId": 143803535, + "side": null, + "caption": "Stuck (right click)", + "quantity": 200, + "timeSeconds": 501.75, + "sulfur": 12000, + "fuel": null + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 15, + "timeSeconds": 30, + "sulfur": 7200, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 250, + "timeSeconds": 106.95, + "sulfur": 6250, + "fuel": null + } + ] + }, + { + "key": "1234878710", + "name": "Telephone", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 2.4661926096428, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 18, + "sulfur": 800, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 7.35, + "sulfur": 360, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 4, + "timeSeconds": 15.5, + "sulfur": null, + "fuel": 20 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 6.1, + "sulfur": 180, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 25, + "timeSeconds": 19.9, + "sulfur": null, + "fuel": 25 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 31, + "timeSeconds": 20.5, + "sulfur": null, + "fuel": 31 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 17, + "timeSeconds": 7.025, + "sulfur": 425, + "fuel": null + } + ] + }, + { + "key": "1242482355", + "name": "Jack O Lantern Angry", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 4.95, + "sulfur": 120, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 1, + "timeSeconds": 12.5, + "sulfur": null, + "fuel": 5 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 3.7, + "sulfur": 60, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 17.9, + "sulfur": null, + "fuel": 5 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 6, + "timeSeconds": 18, + "sulfur": null, + "fuel": 6 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 2, + "timeSeconds": 1, + "sulfur": 50, + "fuel": null + } + ] + }, + { + "key": "1242522330", + "name": "Cursed Cauldron", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 4.95, + "sulfur": 120, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 2, + "timeSeconds": 13.5, + "sulfur": null, + "fuel": 10 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 3.7, + "sulfur": 60, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 9, + "timeSeconds": 18.3, + "sulfur": null, + "fuel": 9 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 11, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 11 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 6, + "timeSeconds": 1, + "sulfur": 150, + "fuel": null + } + ] + }, + { + "key": "1259919256", + "name": "Mixing Table", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 8, + "timeSeconds": 8.4, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 2800, + "fuel": 60 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 8.2206420321427, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 12, + "timeSeconds": 66, + "sulfur": 2400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 8, + "timeSeconds": 13.35, + "sulfur": 960, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 12, + "timeSeconds": 23.5, + "sulfur": null, + "fuel": 60 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 9, + "timeSeconds": 13.3, + "sulfur": 540, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 83, + "timeSeconds": 25.7, + "sulfur": null, + "fuel": 83 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 102, + "timeSeconds": 27.6, + "sulfur": null, + "fuel": 102 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 19.5, + "sulfur": null, + "fuel": 100 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 56, + "timeSeconds": 22.3, + "sulfur": 1400, + "fuel": null + } + ] + }, + { + "key": "1268178466", + "name": "Green Industrial Wall Light", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 6, + "timeSeconds": 2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 24, + "sulfur": 1000, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 10, + "timeSeconds": 15.75, + "sulfur": 1200, + "fuel": null + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 27, + "timeSeconds": 34.9, + "sulfur": 1620, + "fuel": null + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 10.5, + "sulfur": 960, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 23, + "timeSeconds": 8.075, + "sulfur": 575, + "fuel": null + } + ] + }, + { + "key": "1272430949", + "name": "Wheelbarrow Piano", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1.6441284064285, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6.15, + "sulfur": 240, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 3, + "timeSeconds": 14.5, + "sulfur": null, + "fuel": 15 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 4.9, + "sulfur": 120, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 17, + "timeSeconds": 19.1, + "sulfur": null, + "fuel": 17 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 21, + "timeSeconds": 19.5, + "sulfur": null, + "fuel": 21 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 12, + "timeSeconds": 1.925, + "sulfur": 300, + "fuel": null + } + ] + }, + { + "key": "1293102274", + "name": "XOR Switch", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 1.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 3.2882568128571, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 24, + "sulfur": 1000, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 8.55, + "sulfur": 480, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 5, + "timeSeconds": 16.5, + "sulfur": null, + "fuel": 25 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 7.3, + "sulfur": 240, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 33, + "timeSeconds": 20.7, + "sulfur": null, + "fuel": 33 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 41, + "timeSeconds": 21.5, + "sulfur": null, + "fuel": 41 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 23, + "timeSeconds": 8.075, + "sulfur": 575, + "fuel": null + } + ] + }, + { + "key": "1305578813", + "name": "Small Neon Sign", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 10, + "timeSeconds": 9.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 2800, + "fuel": 60 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 2.4661926096428, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 10, + "timeSeconds": 54, + "sulfur": 2000, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 16, + "timeSeconds": 22.95, + "sulfur": 1920, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 4, + "timeSeconds": 15.5, + "sulfur": null, + "fuel": 20 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 71, + "timeSeconds": 87.7, + "sulfur": 4260, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 25, + "timeSeconds": 19.9, + "sulfur": null, + "fuel": 25 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 31, + "timeSeconds": 20.5, + "sulfur": null, + "fuel": 31 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 10.5, + "sulfur": 960, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 53, + "timeSeconds": 21.775, + "sulfur": 1325, + "fuel": null + } + ] + }, + { + "key": "1307626005", + "name": "Storage Barrel Vertical", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 1.6, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 4.9323852192856, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 9.75, + "sulfur": 600, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 7, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 35 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 7.3, + "sulfur": 240, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 50, + "timeSeconds": 22.4, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 62, + "timeSeconds": 23.6, + "sulfur": null, + "fuel": 62 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 34, + "timeSeconds": 14.225, + "sulfur": 850, + "fuel": null + } + ] + }, + { + "key": "1324203999", + "name": "Champagne Boomer", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1.6441284064285, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6.15, + "sulfur": 240, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 3, + "timeSeconds": 14.5, + "sulfur": null, + "fuel": 15 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 4.9, + "sulfur": 120, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 17, + "timeSeconds": 19.1, + "sulfur": null, + "fuel": 17 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 21, + "timeSeconds": 19.5, + "sulfur": null, + "fuel": 21 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 9, + "timeSeconds": 1.4, + "sulfur": 225, + "fuel": null + } + ] + }, + { + "key": "1327005675", + "name": "Short Ice Wall", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 11, + "timeSeconds": 9.6, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 2800, + "fuel": 60 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 13, + "timeSeconds": 72, + "sulfur": 2600, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": "Stuck (right click)", + "quantity": 19, + "timeSeconds": 73.875, + "sulfur": 2280, + "fuel": null + }, + { + "toolId": 143803535, + "side": null, + "caption": "Stuck (right click)", + "quantity": 73, + "timeSeconds": 184.25, + "sulfur": 4380, + "fuel": null + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 13.5, + "sulfur": 1920, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 69, + "timeSeconds": 28.8, + "sulfur": 1725, + "fuel": null + } + ] + }, + { + "key": "1353298668", + "name": "Armored Door", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 36, + "timeSeconds": 42, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 24, + "sulfur": 7000, + "fuel": 150 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 42, + "timeSeconds": 246, + "sulfur": 8400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 13, + "sulfur": 6600, + "fuel": 180 + }, + { + "toolId": 1840822026, + "side": null, + "caption": "Stuck (right click)", + "quantity": 69, + "timeSeconds": 261.375, + "sulfur": 8280, + "fuel": null + }, + { + "toolId": 143803535, + "side": null, + "caption": "Stuck (right click)", + "quantity": 200, + "timeSeconds": 501.75, + "sulfur": 12000, + "fuel": null + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 15, + "timeSeconds": 30, + "sulfur": 7200, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 250, + "timeSeconds": 106.95, + "sulfur": 6250, + "fuel": null + } + ] + }, + { + "key": "1358643074", + "name": "Snow Machine", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 6, + "timeSeconds": 2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 16.441284064285, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 7, + "timeSeconds": 36, + "sulfur": 1400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 12, + "timeSeconds": 18.15, + "sulfur": 1440, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 23, + "timeSeconds": 34.5, + "sulfur": null, + "fuel": 115 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 58, + "timeSeconds": 72.1, + "sulfur": 3480, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 165, + "timeSeconds": 37.3, + "sulfur": null, + "fuel": 165 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 204, + "timeSeconds": 41.2, + "sulfur": null, + "fuel": 204 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 20.5, + "sulfur": null, + "fuel": 150 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 10.5, + "sulfur": 960, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 35, + "timeSeconds": 14.4, + "sulfur": 875, + "fuel": null + } + ] + }, + { + "key": "1361520181", + "name": "Minecart Planter", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1.6441284064285, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6.15, + "sulfur": 240, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 3, + "timeSeconds": 14.5, + "sulfur": null, + "fuel": 15 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 4.9, + "sulfur": 120, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 17, + "timeSeconds": 19.1, + "sulfur": null, + "fuel": 17 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 21, + "timeSeconds": 19.5, + "sulfur": null, + "fuel": 21 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 12, + "timeSeconds": 1.925, + "sulfur": 300, + "fuel": null + } + ] + }, + { + "key": "1371909803", + "name": "Tesla Coil", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 1.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 4.1103210160714, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 6, + "timeSeconds": 30, + "sulfur": 1200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 8.55, + "sulfur": 480, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 6, + "timeSeconds": 17.5, + "sulfur": null, + "fuel": 30 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 8.5, + "sulfur": 300, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 42, + "timeSeconds": 21.6, + "sulfur": null, + "fuel": 42 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 51, + "timeSeconds": 22.5, + "sulfur": null, + "fuel": 51 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 28, + "timeSeconds": 8.95, + "sulfur": 700, + "fuel": null + } + ] + }, + { + "key": "1373240771", + "name": "Wooden Barricade Cover", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9.8647704385713, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 18, + "sulfur": 800, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 7.35, + "sulfur": 360, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 14, + "timeSeconds": 25.5, + "sulfur": null, + "fuel": 70 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 7.3, + "sulfur": 240, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 99, + "timeSeconds": 27.3, + "sulfur": null, + "fuel": 99 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 123, + "timeSeconds": 29.7, + "sulfur": null, + "fuel": 123 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 19.5, + "sulfur": null, + "fuel": 100 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 22, + "timeSeconds": 7.9, + "sulfur": 550, + "fuel": null + } + ] + }, + { + "key": "1376065505", + "name": "Rear Seats Vehicle Module", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 12, + "timeSeconds": 10, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 2800, + "fuel": 60 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 110, + "timeSeconds": 654, + "sulfur": 33000, + "fuel": 8250 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 21, + "timeSeconds": 28.95, + "sulfur": 2520, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 92, + "timeSeconds": 91, + "sulfur": null, + "fuel": 460 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 6, + "timeSeconds": 9.7, + "sulfur": 360, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 1618, + "timeSeconds": 216.1, + "sulfur": null, + "fuel": 1618 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 1375, + "timeSeconds": 168, + "sulfur": null, + "fuel": 1375 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 158, + "timeSeconds": 175.5, + "sulfur": null, + "fuel": 7900 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 12, + "sulfur": 1440, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 40, + "timeSeconds": 15.275, + "sulfur": 1000, + "fuel": null + } + ] + }, + { + "key": "1382263453", + "name": "Barbed Wooden Barricade", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 1.6, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 6.5765136257142, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 7, + "timeSeconds": 36, + "sulfur": 1400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 6, + "timeSeconds": 10.95, + "sulfur": 720, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 9, + "timeSeconds": 20.5, + "sulfur": null, + "fuel": 45 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 7, + "timeSeconds": 10.9, + "sulfur": 420, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 66, + "timeSeconds": 24, + "sulfur": null, + "fuel": 66 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 82, + "timeSeconds": 25.6, + "sulfur": null, + "fuel": 82 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 19.5, + "sulfur": null, + "fuel": 100 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 35, + "timeSeconds": 14.4, + "sulfur": 875, + "fuel": null + } + ] + }, + { + "key": "1390353317", + "name": "Sheet Metal Double Door", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 9, + "timeSeconds": 8.8, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 2800, + "fuel": 60 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 11, + "timeSeconds": null, + "sulfur": 2200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": "Stuck (right click)", + "quantity": 18, + "timeSeconds": 70.125, + "sulfur": 2160, + "fuel": null + }, + { + "toolId": 143803535, + "side": null, + "caption": "Stuck (right click)", + "quantity": 50, + "timeSeconds": 126.75, + "sulfur": 3000, + "fuel": null + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 13.5, + "sulfur": 1920, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 63, + "timeSeconds": 23.525, + "sulfur": 1575, + "fuel": null + } + ] + }, + { + "key": "1413014235", + "name": "Fridge", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 1.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 3.2882568128571, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 8.55, + "sulfur": 480, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 5, + "timeSeconds": 16.5, + "sulfur": null, + "fuel": 25 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 6.1, + "sulfur": 180, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 33, + "timeSeconds": 20.7, + "sulfur": null, + "fuel": 33 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 41, + "timeSeconds": 21.5, + "sulfur": null, + "fuel": 41 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 23, + "timeSeconds": 8.075, + "sulfur": 575, + "fuel": null + } + ] + }, + { + "key": "1430085198", + "name": "Industrial Crafter", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 12, + "timeSeconds": 10, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 2800, + "fuel": 60 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 32.882568128571, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 13, + "timeSeconds": 72, + "sulfur": 2600, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 24, + "timeSeconds": 32.55, + "sulfur": 2880, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 45, + "timeSeconds": 56.5, + "sulfur": null, + "fuel": 225 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 115, + "timeSeconds": 140.5, + "sulfur": 6900, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 330, + "timeSeconds": null, + "sulfur": null, + "fuel": 330 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 407, + "timeSeconds": 64.9, + "sulfur": null, + "fuel": 407 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 6, + "timeSeconds": 23.5, + "sulfur": null, + "fuel": 300 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 12, + "sulfur": 1440, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 69, + "timeSeconds": 28.8, + "sulfur": 1725, + "fuel": null + } + ] + }, + { + "key": "1451568081", + "name": "Chainlink Fence Gate", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 12, + "sulfur": 600, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": "Stuck (right click)", + "quantity": 5, + "timeSeconds": 21.375, + "sulfur": 600, + "fuel": null + }, + { + "toolId": 143803535, + "side": null, + "caption": "Stuck (right click)", + "quantity": 15, + "timeSeconds": 39.25, + "sulfur": 900, + "fuel": null + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 15, + "timeSeconds": 2.45, + "sulfur": 375, + "fuel": null + } + ] + }, + { + "key": "1516985844", + "name": "Netting", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1.6441284064285, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 12, + "sulfur": 600, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": "Stuck (right click)", + "quantity": 3, + "timeSeconds": 13.875, + "sulfur": 360, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 8, + "timeSeconds": 7, + "sulfur": null, + "fuel": 40 + }, + { + "toolId": 143803535, + "side": null, + "caption": "Stuck (right click)", + "quantity": 3, + "timeSeconds": 9.25, + "sulfur": 180, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 17, + "timeSeconds": 19.1, + "sulfur": null, + "fuel": 17 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 21, + "timeSeconds": 19.5, + "sulfur": null, + "fuel": 21 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 12, + "timeSeconds": 1.925, + "sulfur": 300, + "fuel": null + } + ] + }, + { + "key": "1521286012", + "name": "Double Sign Post", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 1.6, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1.2330963048214, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 24, + "sulfur": 1000, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 8, + "timeSeconds": 13.35, + "sulfur": 960, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 2, + "timeSeconds": 13.5, + "sulfur": null, + "fuel": 10 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 36, + "timeSeconds": 45.7, + "sulfur": 2160, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 13, + "timeSeconds": 18.7, + "sulfur": null, + "fuel": 13 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 16, + "timeSeconds": 19, + "sulfur": null, + "fuel": 16 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 27, + "timeSeconds": 8.775, + "sulfur": 675, + "fuel": null + } + ] + }, + { + "key": "1524187186", + "name": "Workbench Level 1", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 8, + "timeSeconds": 8.4, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 2800, + "fuel": 60 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 8.2206420321427, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 12, + "sulfur": 600, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 8, + "timeSeconds": 13.35, + "sulfur": 960, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 12, + "timeSeconds": 23.5, + "sulfur": null, + "fuel": 60 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 7, + "timeSeconds": 10.9, + "sulfur": 420, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 83, + "timeSeconds": 25.7, + "sulfur": null, + "fuel": 83 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 102, + "timeSeconds": 27.6, + "sulfur": null, + "fuel": 102 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 19.5, + "sulfur": null, + "fuel": 100 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 56, + "timeSeconds": 22.3, + "sulfur": 1400, + "fuel": null + } + ] + }, + { + "key": "1524980732", + "name": "Carvable Pumpkin", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 1.6, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1.2330963048214, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 24, + "sulfur": 1000, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 8, + "timeSeconds": 13.35, + "sulfur": 960, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 2, + "timeSeconds": 13.5, + "sulfur": null, + "fuel": 10 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 36, + "timeSeconds": 45.7, + "sulfur": 2160, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 13, + "timeSeconds": 18.7, + "sulfur": null, + "fuel": 13 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 16, + "timeSeconds": 19, + "sulfur": null, + "fuel": 16 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 27, + "timeSeconds": 8.775, + "sulfur": 675, + "fuel": null + } + ] + }, + { + "key": "1534542921", + "name": "Chair", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1.6441284064285, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6.15, + "sulfur": 240, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 3, + "timeSeconds": 14.5, + "sulfur": null, + "fuel": 15 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 4.9, + "sulfur": 120, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 17, + "timeSeconds": 19.1, + "sulfur": null, + "fuel": 17 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 21, + "timeSeconds": 19.5, + "sulfur": null, + "fuel": 21 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 12, + "timeSeconds": 1.925, + "sulfur": 300, + "fuel": null + } + ] + }, + { + "key": "1538126328", + "name": "Industrial Combiner", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 1.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 3.2882568128571, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 24, + "sulfur": 1000, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 8.55, + "sulfur": 480, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 5, + "timeSeconds": 16.5, + "sulfur": null, + "fuel": 25 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 7.3, + "sulfur": 240, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 33, + "timeSeconds": 20.7, + "sulfur": null, + "fuel": 33 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 41, + "timeSeconds": 21.5, + "sulfur": null, + "fuel": 41 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 23, + "timeSeconds": 8.075, + "sulfur": 575, + "fuel": null + } + ] + }, + { + "key": "1542290441", + "name": "Single Sign Post", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 1.6, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1.2330963048214, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 24, + "sulfur": 1000, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 8, + "timeSeconds": 13.35, + "sulfur": 960, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 2, + "timeSeconds": 13.5, + "sulfur": null, + "fuel": 10 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 36, + "timeSeconds": 45.7, + "sulfur": 2160, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 13, + "timeSeconds": 18.7, + "sulfur": null, + "fuel": 13 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 16, + "timeSeconds": 19, + "sulfur": null, + "fuel": 16 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 27, + "timeSeconds": 8.775, + "sulfur": 675, + "fuel": null + } + ] + }, + { + "key": "1559779253", + "name": "Engine Vehicle Module", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 13, + "timeSeconds": 16, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 2800, + "fuel": 60 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 120, + "timeSeconds": 714, + "sulfur": 36000, + "fuel": 9000 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 23, + "timeSeconds": 31.35, + "sulfur": 2760, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 100, + "timeSeconds": 99, + "sulfur": null, + "fuel": 500 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 6, + "timeSeconds": 9.7, + "sulfur": 360, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 1765, + "timeSeconds": 234.2, + "sulfur": null, + "fuel": 1765 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 1500, + "timeSeconds": null, + "sulfur": null, + "fuel": 1500 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 172, + "timeSeconds": 189.5, + "sulfur": null, + "fuel": 8600 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 12, + "sulfur": 1440, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 43, + "timeSeconds": 15.8, + "sulfur": 1075, + "fuel": null + } + ] + }, + { + "key": "1575635062", + "name": "Frankenstein Table", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 8, + "timeSeconds": 8.4, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 2800, + "fuel": 60 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 8.2206420321427, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 12, + "timeSeconds": 66, + "sulfur": 2400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 8, + "timeSeconds": 13.35, + "sulfur": 960, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 12, + "timeSeconds": 23.5, + "sulfur": null, + "fuel": 60 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 9, + "timeSeconds": 13.3, + "sulfur": 540, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 83, + "timeSeconds": 25.7, + "sulfur": null, + "fuel": 83 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 102, + "timeSeconds": 27.6, + "sulfur": null, + "fuel": 102 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 19.5, + "sulfur": null, + "fuel": 100 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 56, + "timeSeconds": 22.3, + "sulfur": 1400, + "fuel": null + } + ] + }, + { + "key": "1581210395", + "name": "Large Planter Box", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 1.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 4.1103210160714, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 8.55, + "sulfur": 480, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 6, + "timeSeconds": 17.5, + "sulfur": null, + "fuel": 30 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 7.3, + "sulfur": 240, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 42, + "timeSeconds": 21.6, + "sulfur": null, + "fuel": 42 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 51, + "timeSeconds": 22.5, + "sulfur": null, + "fuel": 51 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 28, + "timeSeconds": 8.95, + "sulfur": 700, + "fuel": null + } + ] + }, + { + "key": "1588492232", + "name": "Drone", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 600, + "fuel": 150 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 4.95, + "sulfur": 120, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 2, + "timeSeconds": 1, + "sulfur": null, + "fuel": 10 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 3.7, + "sulfur": 60, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 30, + "timeSeconds": 2.9, + "sulfur": null, + "fuel": 30 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 25, + "timeSeconds": 2.4, + "sulfur": null, + "fuel": 25 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 20.5, + "sulfur": null, + "fuel": 150 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 3, + "timeSeconds": 1, + "sulfur": 75, + "fuel": null + } + ] + }, + { + "key": "1603174987", + "name": "Confetti Cannon", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1.6441284064285, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6.15, + "sulfur": 240, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 3, + "timeSeconds": 14.5, + "sulfur": null, + "fuel": 15 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 4.9, + "sulfur": 120, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 17, + "timeSeconds": 19.1, + "sulfur": null, + "fuel": 17 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 21, + "timeSeconds": 19.5, + "sulfur": null, + "fuel": 21 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 9, + "timeSeconds": 1.4, + "sulfur": 225, + "fuel": null + } + ] + }, + { + "key": "1619039771", + "name": "Digital Clock", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1.6441284064285, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 12, + "sulfur": 600, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6.15, + "sulfur": 240, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 3, + "timeSeconds": 14.5, + "sulfur": null, + "fuel": 15 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 4.9, + "sulfur": 120, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 17, + "timeSeconds": 19.1, + "sulfur": null, + "fuel": 17 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 21, + "timeSeconds": 19.5, + "sulfur": null, + "fuel": 21 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 12, + "timeSeconds": 1.925, + "sulfur": 300, + "fuel": null + } + ] + }, + { + "key": "1623701499", + "name": "Industrial Wall Light", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 6, + "timeSeconds": 2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 24, + "sulfur": 1000, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 10, + "timeSeconds": 15.75, + "sulfur": 1200, + "fuel": null + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 27, + "timeSeconds": 34.9, + "sulfur": 1620, + "fuel": null + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 10.5, + "sulfur": 960, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 23, + "timeSeconds": 8.075, + "sulfur": 575, + "fuel": null + } + ] + }, + { + "key": "1629293099", + "name": "Snowman", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 1.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 4.1103210160714, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 8.55, + "sulfur": 480, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 6, + "timeSeconds": 17.5, + "sulfur": null, + "fuel": 30 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 7.3, + "sulfur": 240, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 42, + "timeSeconds": 21.6, + "sulfur": null, + "fuel": 42 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 51, + "timeSeconds": 22.5, + "sulfur": null, + "fuel": 51 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 28, + "timeSeconds": 8.95, + "sulfur": 700, + "fuel": null + } + ] + }, + { + "key": "1643667218", + "name": "Large Animated Neon Sign", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 10, + "timeSeconds": 9.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 2800, + "fuel": 60 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 2.4661926096428, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 10, + "timeSeconds": 54, + "sulfur": 2000, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 16, + "timeSeconds": 22.95, + "sulfur": 1920, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 4, + "timeSeconds": 15.5, + "sulfur": null, + "fuel": 20 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 71, + "timeSeconds": 87.7, + "sulfur": 4260, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 25, + "timeSeconds": 19.9, + "sulfur": null, + "fuel": 25 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 31, + "timeSeconds": 20.5, + "sulfur": null, + "fuel": 31 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 10.5, + "sulfur": 960, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 53, + "timeSeconds": 21.775, + "sulfur": 1325, + "fuel": null + } + ] + }, + { + "key": "1655650836", + "name": "Metal Barricade", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 17, + "timeSeconds": 17.6, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 12, + "sulfur": 4200, + "fuel": 90 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 20, + "timeSeconds": 114, + "sulfur": 4000, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 38, + "timeSeconds": 49.35, + "sulfur": 4560, + "fuel": null + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 343, + "timeSeconds": 414.1, + "sulfur": 20580, + "fuel": null + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 13.5, + "sulfur": 1920, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 111, + "timeSeconds": 44.6, + "sulfur": 2775, + "fuel": null + } + ] + }, + { + "key": "1658229558", + "name": "Lantern", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 7.35, + "sulfur": 360, + "fuel": null + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 7, + "timeSeconds": 10.9, + "sulfur": 420, + "fuel": null + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 6, + "timeSeconds": 1, + "sulfur": 150, + "fuel": null + } + ] + }, + { + "key": "1668858301", + "name": "Small Stocking", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 4.95, + "sulfur": 120, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 1, + "timeSeconds": 12.5, + "sulfur": null, + "fuel": 5 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 3.7, + "sulfur": 60, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 9, + "timeSeconds": 18.3, + "sulfur": null, + "fuel": 9 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 11, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 11 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 3, + "timeSeconds": 1, + "sulfur": 75, + "fuel": null + } + ] + }, + { + "key": "1696050067", + "name": "Modular Car Lift", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 14, + "timeSeconds": 16.4, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 2800, + "fuel": 60 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 41.103210160714, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 16, + "timeSeconds": 90, + "sulfur": 3200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 30, + "timeSeconds": 39.75, + "sulfur": 3600, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 56, + "timeSeconds": 67.5, + "sulfur": null, + "fuel": 280 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 143, + "timeSeconds": 174.1, + "sulfur": 8580, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 412, + "timeSeconds": 72.2, + "sulfur": null, + "fuel": 412 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 509, + "timeSeconds": 78.5, + "sulfur": null, + "fuel": 509 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 7, + "timeSeconds": 24.5, + "sulfur": null, + "fuel": 350 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 13.5, + "sulfur": 1920, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 87, + "timeSeconds": 36.175, + "sulfur": 2175, + "fuel": null + } + ] + }, + { + "key": "1697996440", + "name": "Landscape Photo Frame", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 1.6, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1.2330963048214, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 24, + "sulfur": 1000, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 8, + "timeSeconds": 13.35, + "sulfur": 960, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 2, + "timeSeconds": 13.5, + "sulfur": null, + "fuel": 10 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 36, + "timeSeconds": 45.7, + "sulfur": 2160, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 13, + "timeSeconds": 18.7, + "sulfur": null, + "fuel": 13 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 16, + "timeSeconds": 19, + "sulfur": null, + "fuel": 16 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 27, + "timeSeconds": 8.775, + "sulfur": 675, + "fuel": null + } + ] + }, + { + "key": "1729120840", + "name": "Wooden Door", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 8.2206420321427, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 18, + "sulfur": 800, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": "Stuck (right click)", + "quantity": 6, + "timeSeconds": 25.125, + "sulfur": 720, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 50, + "timeSeconds": 49, + "sulfur": null, + "fuel": 250 + }, + { + "toolId": 143803535, + "side": null, + "caption": "Stuck (right click)", + "quantity": 23, + "timeSeconds": 59.25, + "sulfur": 1380, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 83, + "timeSeconds": 25.7, + "sulfur": null, + "fuel": 83 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 102, + "timeSeconds": 27.6, + "sulfur": null, + "fuel": 102 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 19.5, + "sulfur": null, + "fuel": 100 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 10.5, + "sulfur": 960, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 19, + "timeSeconds": 7.375, + "sulfur": 475, + "fuel": null + } + ] + }, + { + "key": "1729712564", + "name": "Portrait Photo Frame", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 1.6, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1.2330963048214, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 24, + "sulfur": 1000, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 8, + "timeSeconds": 13.35, + "sulfur": 960, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 2, + "timeSeconds": 13.5, + "sulfur": null, + "fuel": 10 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 36, + "timeSeconds": 45.7, + "sulfur": 2160, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 13, + "timeSeconds": 18.7, + "sulfur": null, + "fuel": 13 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 16, + "timeSeconds": 19, + "sulfur": null, + "fuel": 16 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 27, + "timeSeconds": 8.775, + "sulfur": 675, + "fuel": null + } + ] + }, + { + "key": "1744298439", + "name": "Blue Boomer", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1.6441284064285, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6.15, + "sulfur": 240, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 3, + "timeSeconds": 14.5, + "sulfur": null, + "fuel": 15 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 4.9, + "sulfur": 120, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 17, + "timeSeconds": 19.1, + "sulfur": null, + "fuel": 17 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 21, + "timeSeconds": 19.5, + "sulfur": null, + "fuel": 21 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 9, + "timeSeconds": 1.4, + "sulfur": 225, + "fuel": null + } + ] + }, + { + "key": "1819863051", + "name": "Sky Lantern", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 4.95, + "sulfur": 120, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 1, + "timeSeconds": 12.5, + "sulfur": null, + "fuel": 5 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 3.7, + "sulfur": 60, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 9, + "timeSeconds": 18.3, + "sulfur": null, + "fuel": 9 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 11, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 11 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 3, + "timeSeconds": 1, + "sulfur": 75, + "fuel": null + } + ] + }, + { + "key": "1835946060", + "name": "Cable Tunnel", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 6, + "timeSeconds": 2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 16.441284064285, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 7, + "timeSeconds": 36, + "sulfur": 1400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 12, + "timeSeconds": 18.15, + "sulfur": 1440, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 23, + "timeSeconds": 34.5, + "sulfur": null, + "fuel": 115 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 58, + "timeSeconds": 72.1, + "sulfur": 3480, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 165, + "timeSeconds": 37.3, + "sulfur": null, + "fuel": 165 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 204, + "timeSeconds": 41.2, + "sulfur": null, + "fuel": 204 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 20.5, + "sulfur": null, + "fuel": 150 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 10.5, + "sulfur": 960, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 35, + "timeSeconds": 14.4, + "sulfur": 875, + "fuel": null + } + ] + }, + { + "key": "1840570710", + "name": "Above Ground Pool", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 10, + "timeSeconds": 9.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 2800, + "fuel": 60 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9.8647704385713, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 18, + "sulfur": 800, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 10, + "timeSeconds": 15.75, + "sulfur": 1200, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 14, + "timeSeconds": 25.5, + "sulfur": null, + "fuel": 70 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 8, + "timeSeconds": 12.1, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 99, + "timeSeconds": 27.3, + "sulfur": null, + "fuel": 99 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 123, + "timeSeconds": 29.7, + "sulfur": null, + "fuel": 123 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 19.5, + "sulfur": null, + "fuel": 100 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 10.5, + "sulfur": 960, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 67, + "timeSeconds": 28.45, + "sulfur": 1675, + "fuel": null + } + ] + }, + { + "key": "1849887541", + "name": "Small Generator", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 6, + "timeSeconds": 2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 16.441284064285, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 7, + "timeSeconds": 36, + "sulfur": 1400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 12, + "timeSeconds": 18.15, + "sulfur": 1440, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 23, + "timeSeconds": 34.5, + "sulfur": null, + "fuel": 115 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 58, + "timeSeconds": 72.1, + "sulfur": 3480, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 165, + "timeSeconds": 37.3, + "sulfur": null, + "fuel": 165 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 204, + "timeSeconds": 41.2, + "sulfur": null, + "fuel": 204 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 20.5, + "sulfur": null, + "fuel": 150 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 10.5, + "sulfur": 960, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 35, + "timeSeconds": 14.4, + "sulfur": 875, + "fuel": null + } + ] + }, + { + "key": "1874610722", + "name": "Armored Cockpit Vehicle Module", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 30, + "timeSeconds": 34, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 24, + "sulfur": 7000, + "fuel": 150 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 280, + "timeSeconds": 1674, + "sulfur": 84000, + "fuel": 21000 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 12, + "sulfur": 600, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 11.5, + "sulfur": 4400, + "fuel": 120 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 52, + "timeSeconds": 66.15, + "sulfur": 6240, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 234, + "timeSeconds": 233, + "sulfur": null, + "fuel": 1170 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 14, + "timeSeconds": 19.3, + "sulfur": 840, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 4118, + "timeSeconds": 551.1, + "sulfur": null, + "fuel": 4118 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 3500, + "timeSeconds": 428.1, + "sulfur": null, + "fuel": 3500 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 400, + "timeSeconds": 417.5, + "sulfur": null, + "fuel": 20000 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 6, + "timeSeconds": 16.5, + "sulfur": 2880, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 100, + "timeSeconds": 42.675, + "sulfur": 2500, + "fuel": null + } + ] + }, + { + "key": "1885488976", + "name": "Spooky Speaker", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 12, + "sulfur": 600, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 9.75, + "sulfur": 600, + "fuel": null + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 14, + "timeSeconds": 19.3, + "sulfur": 840, + "fuel": null + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 12, + "timeSeconds": 1.925, + "sulfur": 300, + "fuel": null + } + ] + }, + { + "key": "1895235349", + "name": "Disco Ball", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 4.95, + "sulfur": 120, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 1, + "timeSeconds": 12.5, + "sulfur": null, + "fuel": 5 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 3.7, + "sulfur": 60, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 17.9, + "sulfur": null, + "fuel": 5 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 6, + "timeSeconds": 18, + "sulfur": null, + "fuel": 6 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 3, + "timeSeconds": 1, + "sulfur": 75, + "fuel": null + } + ] + }, + { + "key": "1903654061", + "name": "Small Planter Box", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1.6441284064285, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6.15, + "sulfur": 240, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 3, + "timeSeconds": 14.5, + "sulfur": null, + "fuel": 15 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 4.9, + "sulfur": 120, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 17, + "timeSeconds": 19.1, + "sulfur": null, + "fuel": 17 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 21, + "timeSeconds": 19.5, + "sulfur": null, + "fuel": 21 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 12, + "timeSeconds": 1.925, + "sulfur": 300, + "fuel": null + } + ] + }, + { + "key": "1946219319", + "name": "Camp Fire", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 4.95, + "sulfur": 120, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 2, + "timeSeconds": 13.5, + "sulfur": null, + "fuel": 10 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 3.7, + "sulfur": 60, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 9, + "timeSeconds": 18.3, + "sulfur": null, + "fuel": 9 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 11, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 11 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 6, + "timeSeconds": 1, + "sulfur": 150, + "fuel": null + } + ] + }, + { + "key": "1948067030", + "name": "Ladder Hatch", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 9, + "timeSeconds": 8.8, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 2800, + "fuel": 60 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 11, + "timeSeconds": null, + "sulfur": 2200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": "Stuck (right click)", + "quantity": 18, + "timeSeconds": 70.125, + "sulfur": 2160, + "fuel": null + }, + { + "toolId": 143803535, + "side": null, + "caption": "Stuck (right click)", + "quantity": 50, + "timeSeconds": 126.75, + "sulfur": 3000, + "fuel": null + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 13.5, + "sulfur": 1920, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 63, + "timeSeconds": 23.525, + "sulfur": 1575, + "fuel": null + } + ] + }, + { + "key": "1950721418", + "name": "Salvaged Shelves", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 12, + "timeSeconds": 10, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 12, + "sulfur": 4200, + "fuel": 90 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 88.206420321427, + "sulfur": 600, + "fuel": 150 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 31, + "timeSeconds": null, + "sulfur": 6200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 7, + "timeSeconds": 12.15, + "sulfur": 840, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 111, + "timeSeconds": 122.5, + "sulfur": null, + "fuel": 555 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 10, + "timeSeconds": 14.5, + "sulfur": 600, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 824, + "timeSeconds": 127, + "sulfur": null, + "fuel": 824 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 1017, + "timeSeconds": 139.5, + "sulfur": null, + "fuel": 1017 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 14, + "timeSeconds": 31.5, + "sulfur": null, + "fuel": 700 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 173, + "timeSeconds": 72.35, + "sulfur": 4325, + "fuel": null + } + ] + }, + { + "key": "1951603367", + "name": "Switch", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 1.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 3.2882568128571, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 24, + "sulfur": 1000, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 8.55, + "sulfur": 480, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 5, + "timeSeconds": 16.5, + "sulfur": null, + "fuel": 25 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 7.3, + "sulfur": 240, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 33, + "timeSeconds": 20.7, + "sulfur": null, + "fuel": 33 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 41, + "timeSeconds": 21.5, + "sulfur": null, + "fuel": 41 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 23, + "timeSeconds": 8.075, + "sulfur": 575, + "fuel": null + } + ] + }, + { + "key": "1973949960", + "name": "Frontier Bolts Single Item Rack", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 1.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 3.2882568128571, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 8.55, + "sulfur": 480, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 5, + "timeSeconds": 16.5, + "sulfur": null, + "fuel": 25 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 6.1, + "sulfur": 180, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 33, + "timeSeconds": 20.7, + "sulfur": null, + "fuel": 33 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 41, + "timeSeconds": 21.5, + "sulfur": null, + "fuel": 41 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 23, + "timeSeconds": 8.075, + "sulfur": 575, + "fuel": null + } + ] + }, + { + "key": "1983621560", + "name": "Floor triangle grill", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "both", + "caption": null, + "quantity": 9, + "timeSeconds": 8.8, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": "both", + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 2800, + "fuel": 60 + }, + { + "toolId": -1841918730, + "side": "both", + "caption": null, + "quantity": 11, + "timeSeconds": null, + "sulfur": 2200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 18, + "timeSeconds": 70.125, + "sulfur": 2160, + "fuel": null + }, + { + "toolId": 143803535, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 50, + "timeSeconds": 126.75, + "sulfur": 3000, + "fuel": null + }, + { + "toolId": -1878475007, + "side": "both", + "caption": null, + "quantity": 4, + "timeSeconds": 13.5, + "sulfur": 1920, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "both", + "caption": "Semi-Automatic Rifle", + "quantity": 63, + "timeSeconds": 23.525, + "sulfur": 1575, + "fuel": null + } + ] + }, + { + "key": "2009734114", + "name": "Christmas Door Wreath", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 6, + "timeSeconds": 2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 2800, + "fuel": 60 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 4.1103210160714, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 9.75, + "sulfur": 600, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 4, + "timeSeconds": 15.5, + "sulfur": null, + "fuel": 20 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 6.1, + "sulfur": 180, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 42, + "timeSeconds": 21.6, + "sulfur": null, + "fuel": 42 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 51, + "timeSeconds": 22.5, + "sulfur": null, + "fuel": 51 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 12, + "timeSeconds": 1.925, + "sulfur": 300, + "fuel": null + } + ] + }, + { + "key": "2023888403", + "name": "Medium Rechargeable Battery", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 6, + "timeSeconds": 2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 16.441284064285, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 7, + "timeSeconds": 36, + "sulfur": 1400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 12, + "timeSeconds": 18.15, + "sulfur": 1440, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 23, + "timeSeconds": 34.5, + "sulfur": null, + "fuel": 115 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 58, + "timeSeconds": 72.1, + "sulfur": 3480, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 165, + "timeSeconds": 37.3, + "sulfur": null, + "fuel": 165 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 204, + "timeSeconds": 41.2, + "sulfur": null, + "fuel": 204 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 20.5, + "sulfur": null, + "fuel": 150 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 10.5, + "sulfur": 960, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 35, + "timeSeconds": 14.4, + "sulfur": 875, + "fuel": null + } + ] + }, + { + "key": "2041899972", + "name": "Triangle Ladder Hatch", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 9, + "timeSeconds": 8.8, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 2800, + "fuel": 60 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 11, + "timeSeconds": null, + "sulfur": 2200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": "Stuck (right click)", + "quantity": 18, + "timeSeconds": 70.125, + "sulfur": 2160, + "fuel": null + }, + { + "toolId": 143803535, + "side": null, + "caption": "Stuck (right click)", + "quantity": 50, + "timeSeconds": 126.75, + "sulfur": 3000, + "fuel": null + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 13.5, + "sulfur": 1920, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 63, + "timeSeconds": 23.525, + "sulfur": 1575, + "fuel": null + } + ] + }, + { + "key": "2070189026", + "name": "Large Banner on pole", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 10, + "timeSeconds": 9.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 2800, + "fuel": 60 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 2.4661926096428, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 10, + "timeSeconds": 54, + "sulfur": 2000, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 16, + "timeSeconds": 22.95, + "sulfur": 1920, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 4, + "timeSeconds": 15.5, + "sulfur": null, + "fuel": 20 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 71, + "timeSeconds": 87.7, + "sulfur": 4260, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 25, + "timeSeconds": 19.9, + "sulfur": null, + "fuel": 25 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 31, + "timeSeconds": 20.5, + "sulfur": null, + "fuel": 31 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 10.5, + "sulfur": 960, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 53, + "timeSeconds": 21.775, + "sulfur": 1325, + "fuel": null + } + ] + }, + { + "key": "2087678962", + "name": "Search Light", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 9, + "timeSeconds": 8.8, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 2800, + "fuel": 60 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 24.661926096428, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 10, + "timeSeconds": 54, + "sulfur": 2000, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 18, + "timeSeconds": 25.35, + "sulfur": 2160, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 34, + "timeSeconds": 45.5, + "sulfur": null, + "fuel": 170 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 86, + "timeSeconds": 105.7, + "sulfur": 5160, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 247, + "timeSeconds": 48.9, + "sulfur": null, + "fuel": 247 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 306, + "timeSeconds": 54.8, + "sulfur": null, + "fuel": 306 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 22.5, + "sulfur": null, + "fuel": 250 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 10.5, + "sulfur": 960, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 52, + "timeSeconds": 21.6, + "sulfur": 1300, + "fuel": null + } + ] + }, + { + "key": "2090395347", + "name": "Large Solar Panel", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 6, + "timeSeconds": 2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 16.441284064285, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 7, + "timeSeconds": 36, + "sulfur": 1400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 12, + "timeSeconds": 18.15, + "sulfur": 1440, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 23, + "timeSeconds": 34.5, + "sulfur": null, + "fuel": 115 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 58, + "timeSeconds": 72.1, + "sulfur": 3480, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 165, + "timeSeconds": 37.3, + "sulfur": null, + "fuel": 165 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 204, + "timeSeconds": 41.2, + "sulfur": null, + "fuel": 204 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 20.5, + "sulfur": null, + "fuel": 150 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 10.5, + "sulfur": 960, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 35, + "timeSeconds": 14.4, + "sulfur": 875, + "fuel": null + } + ] + }, + { + "key": "2100007442", + "name": "Audio Alarm", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 12, + "sulfur": 600, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 9.75, + "sulfur": 600, + "fuel": null + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 14, + "timeSeconds": 19.3, + "sulfur": 840, + "fuel": null + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 12, + "timeSeconds": 1.925, + "sulfur": 300, + "fuel": null + } + ] + }, + { + "key": "2104517339", + "name": "Strobe Light", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 6, + "timeSeconds": 2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 16.441284064285, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 7, + "timeSeconds": 36, + "sulfur": 1400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 12, + "timeSeconds": 18.15, + "sulfur": 1440, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 23, + "timeSeconds": 34.5, + "sulfur": null, + "fuel": 115 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 58, + "timeSeconds": 72.1, + "sulfur": 3480, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 165, + "timeSeconds": 37.3, + "sulfur": null, + "fuel": 165 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 204, + "timeSeconds": 41.2, + "sulfur": null, + "fuel": 204 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 20.5, + "sulfur": null, + "fuel": 150 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 10.5, + "sulfur": 960, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 35, + "timeSeconds": 14.4, + "sulfur": 875, + "fuel": null + } + ] + }, + { + "key": "2114754781", + "name": "Water Purifier", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 2.4661926096428, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 18, + "sulfur": 800, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 7.35, + "sulfur": 360, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 4, + "timeSeconds": 15.5, + "sulfur": null, + "fuel": 20 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 6.1, + "sulfur": 180, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 25, + "timeSeconds": 19.9, + "sulfur": null, + "fuel": 25 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 31, + "timeSeconds": 20.5, + "sulfur": null, + "fuel": 31 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 17, + "timeSeconds": 7.025, + "sulfur": 425, + "fuel": null + } + ] + }, + { + "key": "-2027793839", + "name": "Advent Calendar", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 1.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 3.2882568128571, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 8.55, + "sulfur": 480, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 5, + "timeSeconds": 16.5, + "sulfur": null, + "fuel": 25 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 6.1, + "sulfur": 180, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 33, + "timeSeconds": 20.7, + "sulfur": null, + "fuel": 33 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 41, + "timeSeconds": 21.5, + "sulfur": null, + "fuel": 41 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 23, + "timeSeconds": 8.075, + "sulfur": 575, + "fuel": null + } + ] + }, + { + "key": "-1615281216", + "name": "Armored Passenger Vehicle Module", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 29, + "timeSeconds": 33.6, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 18, + "sulfur": 5600, + "fuel": 120 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 270, + "timeSeconds": 1614, + "sulfur": 81000, + "fuel": 20250 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 12, + "sulfur": 600, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 11.5, + "sulfur": 4400, + "fuel": 120 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 50, + "timeSeconds": 63.75, + "sulfur": 6000, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 225, + "timeSeconds": 224, + "sulfur": null, + "fuel": 1125 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 14, + "timeSeconds": 19.3, + "sulfur": 840, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 3971, + "timeSeconds": 529.6, + "sulfur": null, + "fuel": 3971 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 3375, + "timeSeconds": 412.2, + "sulfur": null, + "fuel": 3375 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 386, + "timeSeconds": 403.5, + "sulfur": null, + "fuel": 19300 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 6, + "timeSeconds": 16.5, + "sulfur": 2880, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 97, + "timeSeconds": 42.15, + "sulfur": 2425, + "fuel": null + } + ] + }, + { + "key": "-2139580305", + "name": "Auto Turret", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 16, + "timeSeconds": 17.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 18, + "sulfur": 5600, + "fuel": 120 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 41.103210160714, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 12, + "sulfur": 600, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 16, + "timeSeconds": 22.95, + "sulfur": 1920, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 46, + "timeSeconds": 57.5, + "sulfur": null, + "fuel": 230 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 10, + "timeSeconds": 14.5, + "sulfur": 600, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 412, + "timeSeconds": 72.2, + "sulfur": null, + "fuel": 412 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 509, + "timeSeconds": 78.5, + "sulfur": null, + "fuel": 509 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 7, + "timeSeconds": 24.5, + "sulfur": null, + "fuel": 350 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 10.5, + "sulfur": 960, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 112, + "timeSeconds": 44.775, + "sulfur": 2800, + "fuel": null + } + ] + }, + { + "key": "-1274093662", + "name": "Bath Tub Planter", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1.6441284064285, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6.15, + "sulfur": 240, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 3, + "timeSeconds": 14.5, + "sulfur": null, + "fuel": 15 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 4.9, + "sulfur": 120, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 17, + "timeSeconds": 19.1, + "sulfur": null, + "fuel": 17 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 21, + "timeSeconds": 19.5, + "sulfur": null, + "fuel": 21 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 12, + "timeSeconds": 1.925, + "sulfur": 300, + "fuel": null + } + ] + }, + { + "key": "-321431890", + "name": "Beach Chair", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1.6441284064285, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6.15, + "sulfur": 240, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 3, + "timeSeconds": 14.5, + "sulfur": null, + "fuel": 15 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 4.9, + "sulfur": 120, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 17, + "timeSeconds": 19.1, + "sulfur": null, + "fuel": 17 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 21, + "timeSeconds": 19.5, + "sulfur": null, + "fuel": 21 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 12, + "timeSeconds": 1.925, + "sulfur": 300, + "fuel": null + } + ] + }, + { + "key": "-1621539785", + "name": "Beach Parasol", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1.6441284064285, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6.15, + "sulfur": 240, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 3, + "timeSeconds": 14.5, + "sulfur": null, + "fuel": 15 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 4.9, + "sulfur": 120, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 17, + "timeSeconds": 19.1, + "sulfur": null, + "fuel": 17 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 21, + "timeSeconds": 19.5, + "sulfur": null, + "fuel": 21 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 12, + "timeSeconds": 1.925, + "sulfur": 300, + "fuel": null + } + ] + }, + { + "key": "-8312704", + "name": "Beach Towel", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 1.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 3.2882568128571, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 24, + "sulfur": 1000, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 8.55, + "sulfur": 480, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 5, + "timeSeconds": 16.5, + "sulfur": null, + "fuel": 25 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 7.3, + "sulfur": 240, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 33, + "timeSeconds": 20.7, + "sulfur": null, + "fuel": 33 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 41, + "timeSeconds": 21.5, + "sulfur": null, + "fuel": 41 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 23, + "timeSeconds": 8.075, + "sulfur": 575, + "fuel": null + } + ] + }, + { + "key": "-1273339005", + "name": "Bed", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 1.6, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 4.9323852192856, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 7, + "timeSeconds": 36, + "sulfur": 1400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 9.75, + "sulfur": 600, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 7, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 35 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 6, + "timeSeconds": 9.7, + "sulfur": 360, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 50, + "timeSeconds": 22.4, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 62, + "timeSeconds": 23.6, + "sulfur": null, + "fuel": 62 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 34, + "timeSeconds": 14.225, + "sulfur": 850, + "fuel": null + } + ] + }, + { + "key": "-690968985", + "name": "Blocker", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 1.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 3.2882568128571, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 24, + "sulfur": 1000, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 8.55, + "sulfur": 480, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 5, + "timeSeconds": 16.5, + "sulfur": null, + "fuel": 25 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 7.3, + "sulfur": 240, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 33, + "timeSeconds": 20.7, + "sulfur": null, + "fuel": 33 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 41, + "timeSeconds": 21.5, + "sulfur": null, + "fuel": 41 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 23, + "timeSeconds": 8.075, + "sulfur": 575, + "fuel": null + } + ] + }, + { + "key": "-515830359", + "name": "Blue Roman Candle", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 4.95, + "sulfur": 120, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 1, + "timeSeconds": 12.5, + "sulfur": null, + "fuel": 5 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 3.7, + "sulfur": 60, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 9, + "timeSeconds": 18.3, + "sulfur": null, + "fuel": 9 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 11, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 11 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 3, + "timeSeconds": 1, + "sulfur": 75, + "fuel": null + } + ] + }, + { + "key": "-1478094705", + "name": "Boogie Board", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 4.95, + "sulfur": 120, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 1, + "timeSeconds": 1, + "sulfur": null, + "fuel": 5 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 3.7, + "sulfur": 60, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 12, + "timeSeconds": 1.1, + "sulfur": null, + "fuel": 12 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 10, + "timeSeconds": 1, + "sulfur": null, + "fuel": 10 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 19.5, + "sulfur": null, + "fuel": 100 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 1, + "timeSeconds": 1, + "sulfur": 25, + "fuel": null + } + ] + }, + { + "key": "-1113501606", + "name": "Boom Box", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1.6441284064285, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 12, + "sulfur": 600, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6.15, + "sulfur": 240, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 3, + "timeSeconds": 14.5, + "sulfur": null, + "fuel": 15 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 4.9, + "sulfur": 120, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 17, + "timeSeconds": 19.1, + "sulfur": null, + "fuel": 17 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 21, + "timeSeconds": 19.5, + "sulfur": null, + "fuel": 21 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 12, + "timeSeconds": 1.925, + "sulfur": 300, + "fuel": null + } + ] + }, + { + "key": "-1778897469", + "name": "Button", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 1.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 3.2882568128571, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 24, + "sulfur": 1000, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 8.55, + "sulfur": 480, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 5, + "timeSeconds": 16.5, + "sulfur": null, + "fuel": 25 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 7.3, + "sulfur": 240, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 33, + "timeSeconds": 20.7, + "sulfur": null, + "fuel": 33 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 41, + "timeSeconds": 21.5, + "sulfur": null, + "fuel": 41 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 23, + "timeSeconds": 8.075, + "sulfur": 575, + "fuel": null + } + ] + }, + { + "key": "-1040518150", + "name": "Camper Vehicle Module", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 23, + "timeSeconds": 25.6, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 18, + "sulfur": 5600, + "fuel": 120 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 210, + "timeSeconds": 1254, + "sulfur": 63000, + "fuel": 15750 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 12, + "sulfur": 600, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 39, + "timeSeconds": 50.55, + "sulfur": 4680, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 175, + "timeSeconds": 174, + "sulfur": null, + "fuel": 875 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 11, + "timeSeconds": 15.7, + "sulfur": 660, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 3089, + "timeSeconds": 410.8, + "sulfur": null, + "fuel": 3089 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 2625, + "timeSeconds": 320.2, + "sulfur": null, + "fuel": 2625 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 300, + "timeSeconds": 317.5, + "sulfur": null, + "fuel": 15000 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 15, + "sulfur": 2400, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 75, + "timeSeconds": 29.85, + "sulfur": 1875, + "fuel": null + } + ] + }, + { + "key": "-1117626326", + "name": "Chainlink Fence", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 18, + "sulfur": 800, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": "Stuck (right click)", + "quantity": 6, + "timeSeconds": 25.125, + "sulfur": 720, + "fuel": null + }, + { + "toolId": 143803535, + "side": null, + "caption": "Stuck (right click)", + "quantity": 20, + "timeSeconds": 51.75, + "sulfur": 1200, + "fuel": null + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 10.5, + "sulfur": 960, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 20, + "timeSeconds": 7.55, + "sulfur": 500, + "fuel": null + } + ] + }, + { + "key": "-1916473915", + "name": "Chinese Lantern", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 7.35, + "sulfur": 360, + "fuel": null + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 7, + "timeSeconds": 10.9, + "sulfur": 420, + "fuel": null + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 6, + "timeSeconds": 1, + "sulfur": 150, + "fuel": null + } + ] + }, + { + "key": "-770304148", + "name": "Chinese Lantern White", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 7.35, + "sulfur": 360, + "fuel": null + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 7, + "timeSeconds": 10.9, + "sulfur": 420, + "fuel": null + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 6, + "timeSeconds": 1, + "sulfur": 150, + "fuel": null + } + ] + }, + { + "key": "-1501451746", + "name": "Cockpit Vehicle Module", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 16, + "timeSeconds": 17.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 12, + "sulfur": 4200, + "fuel": 90 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 144, + "timeSeconds": 858, + "sulfur": 43200, + "fuel": 10800 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 27, + "timeSeconds": 36.15, + "sulfur": 3240, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 120, + "timeSeconds": 119, + "sulfur": null, + "fuel": 600 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 8, + "timeSeconds": 12.1, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 2118, + "timeSeconds": 283.1, + "sulfur": null, + "fuel": 2118 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 1800, + "timeSeconds": 217.3, + "sulfur": null, + "fuel": 1800 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 206, + "timeSeconds": 223.5, + "sulfur": null, + "fuel": 10300 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 12, + "sulfur": 1440, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 52, + "timeSeconds": 21.6, + "sulfur": 1300, + "fuel": null + } + ] + }, + { + "key": "-1488398114", + "name": "Composter", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 8, + "timeSeconds": 8.4, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 2800, + "fuel": 60 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 8.2206420321427, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 12, + "timeSeconds": 66, + "sulfur": 2400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 8, + "timeSeconds": 13.35, + "sulfur": 960, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 12, + "timeSeconds": 23.5, + "sulfur": null, + "fuel": 60 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 9, + "timeSeconds": 13.3, + "sulfur": 540, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 83, + "timeSeconds": 25.7, + "sulfur": null, + "fuel": 83 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 102, + "timeSeconds": 27.6, + "sulfur": null, + "fuel": 102 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 19.5, + "sulfur": null, + "fuel": 100 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 56, + "timeSeconds": 22.3, + "sulfur": 1400, + "fuel": null + } + ] + }, + { + "key": "-1588628467", + "name": "Computer Station", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 8, + "timeSeconds": 8.4, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 2800, + "fuel": 60 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 8.2206420321427, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 12, + "sulfur": 600, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 8, + "timeSeconds": 13.35, + "sulfur": 960, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 12, + "timeSeconds": 23.5, + "sulfur": null, + "fuel": 60 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 7, + "timeSeconds": 10.9, + "sulfur": 420, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 83, + "timeSeconds": 25.7, + "sulfur": null, + "fuel": 83 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 102, + "timeSeconds": 27.6, + "sulfur": null, + "fuel": 102 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 19.5, + "sulfur": null, + "fuel": 100 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 56, + "timeSeconds": 22.3, + "sulfur": 1400, + "fuel": null + } + ] + }, + { + "key": "-1950721390", + "name": "Concrete Barricade", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 8, + "timeSeconds": 8.4, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 2800, + "fuel": 60 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 10, + "timeSeconds": 54, + "sulfur": 2000, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 10, + "timeSeconds": 15.75, + "sulfur": 1200, + "fuel": null + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 15, + "timeSeconds": 20.5, + "sulfur": 900, + "fuel": null + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 10.5, + "sulfur": 960, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 53, + "timeSeconds": 21.775, + "sulfur": 1325, + "fuel": null + } + ] + }, + { + "key": "-216999575", + "name": "Counter", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 6, + "timeSeconds": 2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 16.441284064285, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 7, + "timeSeconds": 36, + "sulfur": 1400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 12, + "timeSeconds": 18.15, + "sulfur": 1440, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 23, + "timeSeconds": 34.5, + "sulfur": null, + "fuel": 115 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 58, + "timeSeconds": 72.1, + "sulfur": 3480, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 165, + "timeSeconds": 37.3, + "sulfur": null, + "fuel": 165 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 204, + "timeSeconds": 41.2, + "sulfur": null, + "fuel": 204 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 20.5, + "sulfur": null, + "fuel": 150 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 10.5, + "sulfur": 960, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 35, + "timeSeconds": 14.4, + "sulfur": 875, + "fuel": null + } + ] + }, + { + "key": "-151387974", + "name": "Deluxe Christmas Lights", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 12, + "sulfur": 600, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 9.75, + "sulfur": 600, + "fuel": null + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 14, + "timeSeconds": 19.3, + "sulfur": 840, + "fuel": null + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 12, + "timeSeconds": 1.925, + "sulfur": 300, + "fuel": null + } + ] + }, + { + "key": "-502177121", + "name": "Door Controller", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 12, + "timeSeconds": 10, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 2800, + "fuel": 60 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 32.882568128571, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 13, + "timeSeconds": 72, + "sulfur": 2600, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 24, + "timeSeconds": 32.55, + "sulfur": 2880, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 45, + "timeSeconds": 56.5, + "sulfur": null, + "fuel": 225 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 115, + "timeSeconds": 140.5, + "sulfur": 6900, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 330, + "timeSeconds": null, + "sulfur": null, + "fuel": 330 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 407, + "timeSeconds": 64.9, + "sulfur": null, + "fuel": 407 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 6, + "timeSeconds": 23.5, + "sulfur": null, + "fuel": 300 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 12, + "sulfur": 1440, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 69, + "timeSeconds": 28.8, + "sulfur": 1725, + "fuel": null + } + ] + }, + { + "key": "-1519126340", + "name": "Drop Box", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 6, + "timeSeconds": 2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 16.441284064285, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 7, + "timeSeconds": 36, + "sulfur": 1400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 12, + "timeSeconds": 18.15, + "sulfur": 1440, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 23, + "timeSeconds": 34.5, + "sulfur": null, + "fuel": 115 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 58, + "timeSeconds": 72.1, + "sulfur": 3480, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 165, + "timeSeconds": 37.3, + "sulfur": null, + "fuel": 165 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 204, + "timeSeconds": 41.2, + "sulfur": null, + "fuel": 204 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 20.5, + "sulfur": null, + "fuel": 150 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 10.5, + "sulfur": 960, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 35, + "timeSeconds": 14.4, + "sulfur": 875, + "fuel": null + } + ] + }, + { + "key": "-979302481", + "name": "Easter Door Wreath", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 6, + "timeSeconds": 2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 2800, + "fuel": 60 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 4.1103210160714, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 9.75, + "sulfur": 600, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 4, + "timeSeconds": 15.5, + "sulfur": null, + "fuel": 20 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 6.1, + "sulfur": 180, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 42, + "timeSeconds": 21.6, + "sulfur": null, + "fuel": 42 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 51, + "timeSeconds": 22.5, + "sulfur": null, + "fuel": 51 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 12, + "timeSeconds": 1.925, + "sulfur": 300, + "fuel": null + } + ] + }, + { + "key": "-1196547867", + "name": "Electric Furnace", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 8, + "timeSeconds": 8.4, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 2800, + "fuel": 60 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 8.2206420321427, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 12, + "timeSeconds": 66, + "sulfur": 2400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 8, + "timeSeconds": 13.35, + "sulfur": 960, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 12, + "timeSeconds": 23.5, + "sulfur": null, + "fuel": 60 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 9, + "timeSeconds": 13.3, + "sulfur": 540, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 83, + "timeSeconds": 25.7, + "sulfur": null, + "fuel": 83 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 102, + "timeSeconds": 27.6, + "sulfur": null, + "fuel": 102 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 19.5, + "sulfur": null, + "fuel": 100 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 56, + "timeSeconds": 22.3, + "sulfur": 1400, + "fuel": null + } + ] + }, + { + "key": "-784870360", + "name": "Electric Heater", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 6, + "timeSeconds": 2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 24, + "sulfur": 1000, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 10, + "timeSeconds": 15.75, + "sulfur": 1200, + "fuel": null + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 27, + "timeSeconds": 34.9, + "sulfur": 1620, + "fuel": null + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 10.5, + "sulfur": 960, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 23, + "timeSeconds": 8.075, + "sulfur": 575, + "fuel": null + } + ] + }, + { + "key": "-1448252298", + "name": "Electrical Branch", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 1.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 3.2882568128571, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 24, + "sulfur": 1000, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 8.55, + "sulfur": 480, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 5, + "timeSeconds": 16.5, + "sulfur": null, + "fuel": 25 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 7.3, + "sulfur": 240, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 33, + "timeSeconds": 20.7, + "sulfur": null, + "fuel": 33 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 41, + "timeSeconds": 21.5, + "sulfur": null, + "fuel": 41 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 23, + "timeSeconds": 8.075, + "sulfur": 575, + "fuel": null + } + ] + }, + { + "key": "-1230433643", + "name": "Festive Double Doorway Garland", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "both", + "caption": null, + "quantity": 4, + "timeSeconds": 1.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 8.2206420321427, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": "both", + "caption": null, + "quantity": 4, + "timeSeconds": 18, + "sulfur": 800, + "fuel": null + }, + { + "toolId": 1248356124, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 6, + "timeSeconds": 25.125, + "sulfur": 720, + "fuel": null + }, + { + "toolId": 14241751, + "side": "both", + "caption": "Hunting Bow", + "quantity": 50, + "timeSeconds": 49, + "sulfur": null, + "fuel": 250 + }, + { + "toolId": 143803535, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 24, + "timeSeconds": 61.75, + "sulfur": 1440, + "fuel": null + }, + { + "toolId": -1215753368, + "side": "both", + "caption": null, + "quantity": 83, + "timeSeconds": 25.7, + "sulfur": null, + "fuel": 83 + }, + { + "toolId": 703057617, + "side": "both", + "caption": null, + "quantity": 102, + "timeSeconds": 27.6, + "sulfur": null, + "fuel": 102 + }, + { + "toolId": 1556365900, + "side": "both", + "caption": null, + "quantity": 2, + "timeSeconds": 19.5, + "sulfur": null, + "fuel": 100 + }, + { + "toolId": -1878475007, + "side": "both", + "caption": null, + "quantity": 2, + "timeSeconds": 10.5, + "sulfur": 960, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "hard", + "caption": "Semi-Automatic Rifle", + "quantity": 20, + "timeSeconds": 7.55, + "sulfur": 500, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "soft", + "caption": "Semi-Automatic Rifle", + "quantity": 18, + "timeSeconds": 7.2, + "sulfur": 450, + "fuel": null + } + ] + }, + { + "key": "-1379835144", + "name": "Festive Window Garland", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 1.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 8.2206420321427, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 18, + "sulfur": 800, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": "Stuck (right click)", + "quantity": 6, + "timeSeconds": 25.125, + "sulfur": 720, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 50, + "timeSeconds": 49, + "sulfur": null, + "fuel": 250 + }, + { + "toolId": 143803535, + "side": null, + "caption": "Stuck (right click)", + "quantity": 24, + "timeSeconds": 61.75, + "sulfur": 1440, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 83, + "timeSeconds": 25.7, + "sulfur": null, + "fuel": 83 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 102, + "timeSeconds": 27.6, + "sulfur": null, + "fuel": 102 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 19.5, + "sulfur": null, + "fuel": 100 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 10.5, + "sulfur": 960, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 20, + "timeSeconds": 7.55, + "sulfur": 500, + "fuel": null + } + ] + }, + { + "key": "-1913996738", + "name": "Fish Trophy", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 12, + "sulfur": 600, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 8.55, + "sulfur": 480, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 1, + "timeSeconds": 12.5, + "sulfur": null, + "fuel": 5 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 18, + "timeSeconds": 24.1, + "sulfur": 1080, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 7, + "timeSeconds": 18.1, + "sulfur": null, + "fuel": 7 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 8, + "timeSeconds": 18.2, + "sulfur": null, + "fuel": 8 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 14, + "timeSeconds": 2.275, + "sulfur": 350, + "fuel": null + } + ] + }, + { + "key": "-939424778", + "name": "Flasher Light", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 12, + "timeSeconds": 10, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 2800, + "fuel": 60 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 32.882568128571, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 13, + "timeSeconds": 72, + "sulfur": 2600, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 24, + "timeSeconds": 32.55, + "sulfur": 2880, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 45, + "timeSeconds": 56.5, + "sulfur": null, + "fuel": 225 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 115, + "timeSeconds": 140.5, + "sulfur": 6900, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 330, + "timeSeconds": null, + "sulfur": null, + "fuel": 330 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 407, + "timeSeconds": 64.9, + "sulfur": null, + "fuel": 407 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 6, + "timeSeconds": 23.5, + "sulfur": null, + "fuel": 300 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 12, + "sulfur": 1440, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 69, + "timeSeconds": 28.8, + "sulfur": 1725, + "fuel": null + } + ] + }, + { + "key": "-1880231361", + "name": "Flatbed Vehicle Module", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 11, + "timeSeconds": 9.6, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 2800, + "fuel": 60 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 100, + "timeSeconds": 594, + "sulfur": 30000, + "fuel": 7500 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 19, + "timeSeconds": 26.55, + "sulfur": 2280, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 84, + "timeSeconds": 83, + "sulfur": null, + "fuel": 420 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 8.5, + "sulfur": 300, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 1471, + "timeSeconds": 194.6, + "sulfur": null, + "fuel": 1471 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 1250, + "timeSeconds": 152.1, + "sulfur": null, + "fuel": 1250 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 143, + "timeSeconds": 160.5, + "sulfur": null, + "fuel": 7150 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 10.5, + "sulfur": 960, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 36, + "timeSeconds": 14.575, + "sulfur": 900, + "fuel": null + } + ] + }, + { + "key": "-265292885", + "name": "Fluid Combiner", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 1.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 3.2882568128571, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 24, + "sulfur": 1000, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 8.55, + "sulfur": 480, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 5, + "timeSeconds": 16.5, + "sulfur": null, + "fuel": 25 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 7.3, + "sulfur": 240, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 33, + "timeSeconds": 20.7, + "sulfur": null, + "fuel": 33 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 41, + "timeSeconds": 21.5, + "sulfur": null, + "fuel": 41 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 23, + "timeSeconds": 8.075, + "sulfur": 575, + "fuel": null + } + ] + }, + { + "key": "-1166712463", + "name": "Fluid Splitter", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 1.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 3.2882568128571, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 24, + "sulfur": 1000, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 8.55, + "sulfur": 480, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 5, + "timeSeconds": 16.5, + "sulfur": null, + "fuel": 25 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 7.3, + "sulfur": 240, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 33, + "timeSeconds": 20.7, + "sulfur": null, + "fuel": 33 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 41, + "timeSeconds": 21.5, + "sulfur": null, + "fuel": 41 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 23, + "timeSeconds": 8.075, + "sulfur": 575, + "fuel": null + } + ] + }, + { + "key": "-1973785141", + "name": "Fogger-3000", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 6, + "timeSeconds": 2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 16.441284064285, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 7, + "timeSeconds": 36, + "sulfur": 1400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 12, + "timeSeconds": 18.15, + "sulfur": 1440, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 23, + "timeSeconds": 34.5, + "sulfur": null, + "fuel": 115 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 58, + "timeSeconds": 72.1, + "sulfur": 3480, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 165, + "timeSeconds": 37.3, + "sulfur": null, + "fuel": 165 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 204, + "timeSeconds": 41.2, + "sulfur": null, + "fuel": 204 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 20.5, + "sulfur": null, + "fuel": 150 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 10.5, + "sulfur": 960, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 35, + "timeSeconds": 14.4, + "sulfur": 875, + "fuel": null + } + ] + }, + { + "key": "-52398594", + "name": "Frontier Horns Single Item Rack", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 1.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 3.2882568128571, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 8.55, + "sulfur": 480, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 5, + "timeSeconds": 16.5, + "sulfur": null, + "fuel": 25 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 6.1, + "sulfur": 180, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 33, + "timeSeconds": 20.7, + "sulfur": null, + "fuel": 33 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 41, + "timeSeconds": 21.5, + "sulfur": null, + "fuel": 41 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 23, + "timeSeconds": 8.075, + "sulfur": 575, + "fuel": null + } + ] + }, + { + "key": "-849373693", + "name": "Frontier Horseshoe Single Item Rack", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 1.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 3.2882568128571, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 8.55, + "sulfur": 480, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 5, + "timeSeconds": 16.5, + "sulfur": null, + "fuel": 25 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 6.1, + "sulfur": 180, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 33, + "timeSeconds": 20.7, + "sulfur": null, + "fuel": 33 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 41, + "timeSeconds": 21.5, + "sulfur": null, + "fuel": 41 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 23, + "timeSeconds": 8.075, + "sulfur": 575, + "fuel": null + } + ] + }, + { + "key": "-1999722522", + "name": "Furnace", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 8, + "timeSeconds": 8.4, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 2800, + "fuel": 60 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 8.2206420321427, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 12, + "timeSeconds": 66, + "sulfur": 2400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 8, + "timeSeconds": 13.35, + "sulfur": 960, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 12, + "timeSeconds": 23.5, + "sulfur": null, + "fuel": 60 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 9, + "timeSeconds": 13.3, + "sulfur": 540, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 83, + "timeSeconds": 25.7, + "sulfur": null, + "fuel": 83 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 102, + "timeSeconds": 27.6, + "sulfur": null, + "fuel": 102 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 19.5, + "sulfur": null, + "fuel": 100 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 56, + "timeSeconds": 22.3, + "sulfur": 1400, + "fuel": null + } + ] + }, + { + "key": "-148794216", + "name": "Garage Door", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 22, + "timeSeconds": 25.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 12, + "sulfur": 4200, + "fuel": 90 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 25, + "timeSeconds": 144, + "sulfur": 5000, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 11.5, + "sulfur": 4400, + "fuel": 120 + }, + { + "toolId": 1840822026, + "side": null, + "caption": "Stuck (right click)", + "quantity": 42, + "timeSeconds": 160.125, + "sulfur": 5040, + "fuel": null + }, + { + "toolId": 143803535, + "side": null, + "caption": "Stuck (right click)", + "quantity": 120, + "timeSeconds": 301.75, + "sulfur": 7200, + "fuel": null + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 9, + "timeSeconds": 21, + "sulfur": 4320, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 150, + "timeSeconds": 64.1, + "sulfur": 3750, + "fuel": null + } + ] + }, + { + "key": "-695124222", + "name": "Giant Candy Decor", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 1.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 4.1103210160714, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 8.55, + "sulfur": 480, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 6, + "timeSeconds": 17.5, + "sulfur": null, + "fuel": 30 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 7.3, + "sulfur": 240, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 42, + "timeSeconds": 21.6, + "sulfur": null, + "fuel": 42 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 51, + "timeSeconds": 22.5, + "sulfur": null, + "fuel": 51 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 28, + "timeSeconds": 8.95, + "sulfur": 700, + "fuel": null + } + ] + }, + { + "key": "-1679267738", + "name": "Graveyard Fence", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 6, + "timeSeconds": 2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 7, + "timeSeconds": 36, + "sulfur": 1400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": "Stuck (right click)", + "quantity": 10, + "timeSeconds": 40.125, + "sulfur": 1200, + "fuel": null + }, + { + "toolId": 143803535, + "side": null, + "caption": "Stuck (right click)", + "quantity": 37, + "timeSeconds": 94.25, + "sulfur": 2220, + "fuel": null + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 10.5, + "sulfur": 960, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 35, + "timeSeconds": 14.4, + "sulfur": 875, + "fuel": null + } + ] + }, + { + "key": "-656349006", + "name": "Green Boomer", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1.6441284064285, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6.15, + "sulfur": 240, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 3, + "timeSeconds": 14.5, + "sulfur": null, + "fuel": 15 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 4.9, + "sulfur": 120, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 17, + "timeSeconds": 19.1, + "sulfur": null, + "fuel": 17 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 21, + "timeSeconds": 19.5, + "sulfur": null, + "fuel": 21 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 9, + "timeSeconds": 1.4, + "sulfur": 225, + "fuel": null + } + ] + }, + { + "key": "-1306288356", + "name": "Green Roman Candle", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 4.95, + "sulfur": 120, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 1, + "timeSeconds": 12.5, + "sulfur": null, + "fuel": 5 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 3.7, + "sulfur": 60, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 9, + "timeSeconds": 18.3, + "sulfur": null, + "fuel": 9 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 11, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 11 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 3, + "timeSeconds": 1, + "sulfur": 75, + "fuel": null + } + ] + }, + { + "key": "-1696379844", + "name": "Hazmat Youtooz", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 4.95, + "sulfur": 120, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 1, + "timeSeconds": 12.5, + "sulfur": null, + "fuel": 5 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 3.7, + "sulfur": 60, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 17.9, + "sulfur": null, + "fuel": 5 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 6, + "timeSeconds": 18, + "sulfur": null, + "fuel": 6 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 2, + "timeSeconds": 1, + "sulfur": 50, + "fuel": null + } + ] + }, + { + "key": "-1507239837", + "name": "HBHF Sensor", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 12, + "timeSeconds": 10, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 2800, + "fuel": 60 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 32.882568128571, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 13, + "timeSeconds": 72, + "sulfur": 2600, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 24, + "timeSeconds": 32.55, + "sulfur": 2880, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 45, + "timeSeconds": 56.5, + "sulfur": null, + "fuel": 225 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 115, + "timeSeconds": 140.5, + "sulfur": 6900, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 330, + "timeSeconds": null, + "sulfur": null, + "fuel": 330 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 407, + "timeSeconds": 64.9, + "sulfur": null, + "fuel": 407 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 6, + "timeSeconds": 23.5, + "sulfur": null, + "fuel": 300 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 12, + "sulfur": 1440, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 69, + "timeSeconds": 28.8, + "sulfur": 1725, + "fuel": null + } + ] + }, + { + "key": "-722629980", + "name": "Heavy Scientist Youtooz", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 4.95, + "sulfur": 120, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 1, + "timeSeconds": 12.5, + "sulfur": null, + "fuel": 5 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 3.7, + "sulfur": 60, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 17.9, + "sulfur": null, + "fuel": 5 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 6, + "timeSeconds": 18, + "sulfur": null, + "fuel": 6 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 2, + "timeSeconds": 1, + "sulfur": 50, + "fuel": null + } + ] + }, + { + "key": "-691113464", + "name": "High External Stone Gate", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 29, + "timeSeconds": 33.6, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 18, + "sulfur": 5600, + "fuel": 120 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 32, + "timeSeconds": 186, + "sulfur": 6400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 11.5, + "sulfur": 4400, + "fuel": 120 + }, + { + "toolId": 1840822026, + "side": null, + "caption": "Stuck (right click)", + "quantity": 46, + "timeSeconds": 175.125, + "sulfur": 5520, + "fuel": null + }, + { + "toolId": 143803535, + "side": null, + "caption": "Stuck (right click)", + "quantity": 182, + "timeSeconds": 456.75, + "sulfur": 10920, + "fuel": null + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 10, + "timeSeconds": 22.5, + "sulfur": 4800, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 185, + "timeSeconds": 78.675, + "sulfur": 4625, + "fuel": null + } + ] + }, + { + "key": "-967648160", + "name": "High External Stone Wall", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 29, + "timeSeconds": 33.6, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 18, + "sulfur": 5600, + "fuel": 120 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 32, + "timeSeconds": 186, + "sulfur": 6400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 11.5, + "sulfur": 4400, + "fuel": 120 + }, + { + "toolId": 1840822026, + "side": null, + "caption": "Stuck (right click)", + "quantity": 46, + "timeSeconds": 175.125, + "sulfur": 5520, + "fuel": null + }, + { + "toolId": 143803535, + "side": null, + "caption": "Stuck (right click)", + "quantity": 182, + "timeSeconds": 456.75, + "sulfur": 10920, + "fuel": null + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 10, + "timeSeconds": 22.5, + "sulfur": 4800, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 185, + "timeSeconds": 78.675, + "sulfur": 4625, + "fuel": null + } + ] + }, + { + "key": "-335089230", + "name": "High External Wooden Gate", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 16, + "timeSeconds": 17.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 12, + "sulfur": 4200, + "fuel": 90 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 41.103210160714, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 18, + "timeSeconds": 102, + "sulfur": 3600, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 11.5, + "sulfur": 4400, + "fuel": 120 + }, + { + "toolId": 1840822026, + "side": null, + "caption": "Stuck (right click)", + "quantity": 26, + "timeSeconds": 100.125, + "sulfur": 3120, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 250, + "timeSeconds": 249, + "sulfur": null, + "fuel": 1250 + }, + { + "toolId": 143803535, + "side": null, + "caption": "Stuck (right click)", + "quantity": 118, + "timeSeconds": 296.75, + "sulfur": 7080, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 412, + "timeSeconds": 72.2, + "sulfur": null, + "fuel": 412 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 509, + "timeSeconds": 78.5, + "sulfur": null, + "fuel": 509 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 7, + "timeSeconds": 24.5, + "sulfur": null, + "fuel": 350 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 6, + "timeSeconds": 16.5, + "sulfur": 2880, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 98, + "timeSeconds": 42.325, + "sulfur": 2450, + "fuel": null + } + ] + }, + { + "key": "-985781766", + "name": "High Ice Wall", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 29, + "timeSeconds": 33.6, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 18, + "sulfur": 5600, + "fuel": 120 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 32, + "timeSeconds": 186, + "sulfur": 6400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 11.5, + "sulfur": 4400, + "fuel": 120 + }, + { + "toolId": 1840822026, + "side": null, + "caption": "Stuck (right click)", + "quantity": 46, + "timeSeconds": 175.125, + "sulfur": 5520, + "fuel": null + }, + { + "toolId": 143803535, + "side": null, + "caption": "Stuck (right click)", + "quantity": 182, + "timeSeconds": 456.75, + "sulfur": 10920, + "fuel": null + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 10, + "timeSeconds": 22.5, + "sulfur": 4800, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 185, + "timeSeconds": 78.675, + "sulfur": 4625, + "fuel": null + } + ] + }, + { + "key": "-1442559428", + "name": "Hobo Barrel", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 4.95, + "sulfur": 120, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 2, + "timeSeconds": 13.5, + "sulfur": null, + "fuel": 10 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 3.7, + "sulfur": 60, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 9, + "timeSeconds": 18.3, + "sulfur": null, + "fuel": 9 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 11, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 11 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 6, + "timeSeconds": 1, + "sulfur": 150, + "fuel": null + } + ] + }, + { + "key": "-1663759755", + "name": "Homemade Landmine", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 4.95, + "sulfur": 120, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 1, + "timeSeconds": 12.5, + "sulfur": null, + "fuel": 5 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 3.7, + "sulfur": 60, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 9, + "timeSeconds": 18.3, + "sulfur": null, + "fuel": 9 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 11, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 11 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 3, + "timeSeconds": 1, + "sulfur": 75, + "fuel": null + } + ] + }, + { + "key": "-246672609", + "name": "Horizontal Weapon Rack", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 1.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 3.2882568128571, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 8.55, + "sulfur": 480, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 5, + "timeSeconds": 16.5, + "sulfur": null, + "fuel": 25 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 6.1, + "sulfur": 180, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 33, + "timeSeconds": 20.7, + "sulfur": null, + "fuel": 33 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 41, + "timeSeconds": 21.5, + "sulfur": null, + "fuel": 41 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 23, + "timeSeconds": 8.075, + "sulfur": 575, + "fuel": null + } + ] + }, + { + "key": "-143132326", + "name": "Huge Wooden Sign", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 7, + "timeSeconds": 8, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1.6441284064285, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 7, + "timeSeconds": 36, + "sulfur": 1400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 11, + "timeSeconds": 16.95, + "sulfur": 1320, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 3, + "timeSeconds": 14.5, + "sulfur": null, + "fuel": 15 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 48, + "timeSeconds": null, + "sulfur": 2880, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 17, + "timeSeconds": 19.1, + "sulfur": null, + "fuel": 17 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 21, + "timeSeconds": 19.5, + "sulfur": null, + "fuel": 21 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 10.5, + "sulfur": 960, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 36, + "timeSeconds": 14.575, + "sulfur": 900, + "fuel": null + } + ] + }, + { + "key": "-44876289", + "name": "Igniter", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 1.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 4.1103210160714, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 6, + "timeSeconds": 30, + "sulfur": 1200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 8.55, + "sulfur": 480, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 6, + "timeSeconds": 17.5, + "sulfur": null, + "fuel": 30 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 8.5, + "sulfur": 300, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 42, + "timeSeconds": 21.6, + "sulfur": null, + "fuel": 42 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 51, + "timeSeconds": 22.5, + "sulfur": null, + "fuel": 51 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 28, + "timeSeconds": 8.95, + "sulfur": 700, + "fuel": null + } + ] + }, + { + "key": "-697981032", + "name": "Inner Tube", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 4.95, + "sulfur": 120, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 1, + "timeSeconds": 1, + "sulfur": null, + "fuel": 5 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 3.7, + "sulfur": 60, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 12, + "timeSeconds": 1.1, + "sulfur": null, + "fuel": 12 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 10, + "timeSeconds": 1, + "sulfur": null, + "fuel": 10 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 19.5, + "sulfur": null, + "fuel": 100 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 1, + "timeSeconds": 1, + "sulfur": 25, + "fuel": null + } + ] + }, + { + "key": "-1824943010", + "name": "Jack O Lantern Happy", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 4.95, + "sulfur": 120, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 1, + "timeSeconds": 12.5, + "sulfur": null, + "fuel": 5 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 3.7, + "sulfur": 60, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 17.9, + "sulfur": null, + "fuel": 5 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 6, + "timeSeconds": 18, + "sulfur": null, + "fuel": 6 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 2, + "timeSeconds": 1, + "sulfur": 50, + "fuel": null + } + ] + }, + { + "key": "-1330640246", + "name": "Junkyard Drum Kit", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1.6441284064285, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6.15, + "sulfur": 240, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 3, + "timeSeconds": 14.5, + "sulfur": null, + "fuel": 15 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 4.9, + "sulfur": 120, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 17, + "timeSeconds": 19.1, + "sulfur": null, + "fuel": 17 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 21, + "timeSeconds": 19.5, + "sulfur": null, + "fuel": 21 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 12, + "timeSeconds": 1.925, + "sulfur": 300, + "fuel": null + } + ] + }, + { + "key": "-845557339", + "name": "Landscape Picture Frame", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 1.6, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1.2330963048214, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 24, + "sulfur": 1000, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 8, + "timeSeconds": 13.35, + "sulfur": 960, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 2, + "timeSeconds": 13.5, + "sulfur": null, + "fuel": 10 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 36, + "timeSeconds": 45.7, + "sulfur": 2160, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 13, + "timeSeconds": 18.7, + "sulfur": null, + "fuel": 13 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 16, + "timeSeconds": 19, + "sulfur": null, + "fuel": 16 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 27, + "timeSeconds": 8.775, + "sulfur": 675, + "fuel": null + } + ] + }, + { + "key": "-489848205", + "name": "Large Candle Set", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 12, + "sulfur": 600, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 9.75, + "sulfur": 600, + "fuel": null + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 14, + "timeSeconds": 19.3, + "sulfur": 840, + "fuel": null + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 12, + "timeSeconds": 1.925, + "sulfur": 300, + "fuel": null + } + ] + }, + { + "key": "-1693832478", + "name": "Large Flatbed Vehicle Module", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 14, + "timeSeconds": 16.4, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 2800, + "fuel": 60 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 130, + "timeSeconds": 774, + "sulfur": 39000, + "fuel": 9750 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 25, + "timeSeconds": 33.75, + "sulfur": 3000, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 109, + "timeSeconds": 108, + "sulfur": null, + "fuel": 545 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 7, + "timeSeconds": 10.9, + "sulfur": 420, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 1912, + "timeSeconds": 255.7, + "sulfur": null, + "fuel": 1912 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 1625, + "timeSeconds": 196.4, + "sulfur": null, + "fuel": 1625 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 186, + "timeSeconds": 203.5, + "sulfur": null, + "fuel": 9300 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 12, + "sulfur": 1440, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 47, + "timeSeconds": 16.5, + "sulfur": 1175, + "fuel": null + } + ] + }, + { + "key": "-1992717673", + "name": "Large Furnace", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 24, + "timeSeconds": 26, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 24, + "sulfur": 7000, + "fuel": 150 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 24.661926096428, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 8, + "timeSeconds": 42, + "sulfur": 1600, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 11.5, + "sulfur": 4400, + "fuel": 120 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 24, + "timeSeconds": 32.55, + "sulfur": 2880, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 34, + "timeSeconds": 45.5, + "sulfur": null, + "fuel": 170 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 19, + "timeSeconds": 25.3, + "sulfur": 1140, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 247, + "timeSeconds": 48.9, + "sulfur": null, + "fuel": 247 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 306, + "timeSeconds": 54.8, + "sulfur": null, + "fuel": 306 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 22.5, + "sulfur": null, + "fuel": 250 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 12, + "sulfur": 1440, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 167, + "timeSeconds": 71.3, + "sulfur": 4175, + "fuel": null + } + ] + }, + { + "key": "-1100168350", + "name": "Large Water Catcher", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 1.6, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 4.9323852192856, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 9.75, + "sulfur": 600, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 7, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 35 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 7.3, + "sulfur": 240, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 50, + "timeSeconds": 22.4, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 62, + "timeSeconds": 23.6, + "sulfur": null, + "fuel": 62 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 34, + "timeSeconds": 14.225, + "sulfur": 850, + "fuel": null + } + ] + }, + { + "key": "-798293154", + "name": "Laser Detector", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 12, + "timeSeconds": 10, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 2800, + "fuel": 60 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 32.882568128571, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 13, + "timeSeconds": 72, + "sulfur": 2600, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 24, + "timeSeconds": 32.55, + "sulfur": 2880, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 45, + "timeSeconds": 56.5, + "sulfur": null, + "fuel": 225 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 115, + "timeSeconds": 140.5, + "sulfur": 6900, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 330, + "timeSeconds": null, + "sulfur": null, + "fuel": 330 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 407, + "timeSeconds": 64.9, + "sulfur": null, + "fuel": 407 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 6, + "timeSeconds": 23.5, + "sulfur": null, + "fuel": 300 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 12, + "sulfur": 1440, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 69, + "timeSeconds": 28.8, + "sulfur": 1725, + "fuel": null + } + ] + }, + { + "key": "-110921842", + "name": "Locker", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 8, + "timeSeconds": 8.4, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 2800, + "fuel": 60 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 8.2206420321427, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 12, + "sulfur": 600, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 8, + "timeSeconds": 13.35, + "sulfur": 960, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 12, + "timeSeconds": 23.5, + "sulfur": null, + "fuel": 60 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 7, + "timeSeconds": 10.9, + "sulfur": 420, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 83, + "timeSeconds": 25.7, + "sulfur": null, + "fuel": 83 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 102, + "timeSeconds": 27.6, + "sulfur": null, + "fuel": 102 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 19.5, + "sulfur": null, + "fuel": 100 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 56, + "timeSeconds": 22.3, + "sulfur": 1400, + "fuel": null + } + ] + }, + { + "key": "-586784898", + "name": "Mail Box", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 1.6, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 12.330963048214, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 9.75, + "sulfur": 600, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 14, + "timeSeconds": 25.5, + "sulfur": null, + "fuel": 70 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 6.1, + "sulfur": 180, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 124, + "timeSeconds": 33.2, + "sulfur": null, + "fuel": 124 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 153, + "timeSeconds": 36.1, + "sulfur": null, + "fuel": 153 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 20.5, + "sulfur": null, + "fuel": 150 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 34, + "timeSeconds": 14.225, + "sulfur": 850, + "fuel": null + } + ] + }, + { + "key": "-1423304443", + "name": "Medium Neon Sign", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 10, + "timeSeconds": 9.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 2800, + "fuel": 60 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 2.4661926096428, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 10, + "timeSeconds": 54, + "sulfur": 2000, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 16, + "timeSeconds": 22.95, + "sulfur": 1920, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 4, + "timeSeconds": 15.5, + "sulfur": null, + "fuel": 20 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 71, + "timeSeconds": 87.7, + "sulfur": 4260, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 25, + "timeSeconds": 19.9, + "sulfur": null, + "fuel": 25 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 31, + "timeSeconds": 20.5, + "sulfur": null, + "fuel": 31 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 10.5, + "sulfur": 960, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 53, + "timeSeconds": 21.775, + "sulfur": 1325, + "fuel": null + } + ] + }, + { + "key": "-1819233322", + "name": "Medium Wooden Sign", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 1.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 18, + "sulfur": 800, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 6, + "timeSeconds": 10.95, + "sulfur": 720, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 2, + "timeSeconds": 13.5, + "sulfur": null, + "fuel": 10 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 24, + "timeSeconds": 31.3, + "sulfur": 1440, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 9, + "timeSeconds": 18.3, + "sulfur": null, + "fuel": 9 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 11, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 11 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 18, + "timeSeconds": 7.2, + "sulfur": 450, + "fuel": null + } + ] + }, + { + "key": "-746647361", + "name": "Memory Cell", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 1.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 3.2882568128571, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 24, + "sulfur": 1000, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 8.55, + "sulfur": 480, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 5, + "timeSeconds": 16.5, + "sulfur": null, + "fuel": 25 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 7.3, + "sulfur": 240, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 33, + "timeSeconds": 20.7, + "sulfur": null, + "fuel": 33 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 41, + "timeSeconds": 21.5, + "sulfur": null, + "fuel": 41 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 23, + "timeSeconds": 8.075, + "sulfur": 575, + "fuel": null + } + ] + }, + { + "key": "-1199897169", + "name": "Metal horizontal embrasure", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 28, + "timeSeconds": 33.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 18, + "sulfur": 5600, + "fuel": 120 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 88.206420321427, + "sulfur": 600, + "fuel": 150 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 31, + "timeSeconds": null, + "sulfur": 6200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 11.5, + "sulfur": 4400, + "fuel": 120 + }, + { + "toolId": 1840822026, + "side": null, + "caption": "Stuck (right click)", + "quantity": 59, + "timeSeconds": 223.875, + "sulfur": 7080, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 500, + "timeSeconds": 499, + "sulfur": null, + "fuel": 2500 + }, + { + "toolId": 143803535, + "side": null, + "caption": "Stuck (right click)", + "quantity": 286, + "timeSeconds": 716.75, + "sulfur": 17160, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 824, + "timeSeconds": 127, + "sulfur": null, + "fuel": 824 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 1017, + "timeSeconds": 139.5, + "sulfur": null, + "fuel": 1017 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 14, + "timeSeconds": 31.5, + "sulfur": null, + "fuel": 700 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 13, + "timeSeconds": 27, + "sulfur": 6240, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 173, + "timeSeconds": 72.35, + "sulfur": 4325, + "fuel": null + } + ] + }, + { + "key": "-148229307", + "name": "Metal Shop Front", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 43, + "timeSeconds": 56, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 6, + "timeSeconds": 30, + "sulfur": 8400, + "fuel": 180 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 50, + "timeSeconds": 294, + "sulfur": 10000, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 13, + "sulfur": 6600, + "fuel": 180 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 99, + "timeSeconds": 122.55, + "sulfur": 11880, + "fuel": null + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 7229, + "timeSeconds": 8677.3, + "sulfur": 433740, + "fuel": null + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 18, + "timeSeconds": 34.5, + "sulfur": 8640, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 300, + "timeSeconds": 128.375, + "sulfur": 7500, + "fuel": null + } + ] + }, + { + "key": "-1199897172", + "name": "Metal Vertical embrasure", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 28, + "timeSeconds": 33.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 18, + "sulfur": 5600, + "fuel": 120 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 88.206420321427, + "sulfur": 600, + "fuel": 150 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 31, + "timeSeconds": null, + "sulfur": 6200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 11.5, + "sulfur": 4400, + "fuel": 120 + }, + { + "toolId": 1840822026, + "side": null, + "caption": "Stuck (right click)", + "quantity": 59, + "timeSeconds": 223.875, + "sulfur": 7080, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 500, + "timeSeconds": 499, + "sulfur": null, + "fuel": 2500 + }, + { + "toolId": 143803535, + "side": null, + "caption": "Stuck (right click)", + "quantity": 286, + "timeSeconds": 716.75, + "sulfur": 17160, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 824, + "timeSeconds": 127, + "sulfur": null, + "fuel": 824 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 1017, + "timeSeconds": 139.5, + "sulfur": null, + "fuel": 1017 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 14, + "timeSeconds": 31.5, + "sulfur": null, + "fuel": 700 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 13, + "timeSeconds": 27, + "sulfur": 6240, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 173, + "timeSeconds": 72.35, + "sulfur": 4325, + "fuel": null + } + ] + }, + { + "key": "-819720157", + "name": "Metal Window Bars", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 29, + "timeSeconds": 33.6, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 18, + "sulfur": 5600, + "fuel": 120 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 34, + "timeSeconds": 198, + "sulfur": 6800, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 11.5, + "sulfur": 4400, + "fuel": 120 + }, + { + "toolId": 1840822026, + "side": null, + "caption": "Stuck (right click)", + "quantity": 56, + "timeSeconds": 212.625, + "sulfur": 6720, + "fuel": null + }, + { + "toolId": 143803535, + "side": null, + "caption": "Stuck (right click)", + "quantity": 497, + "timeSeconds": 1244.25, + "sulfur": 29820, + "fuel": null + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 12, + "timeSeconds": 25.5, + "sulfur": 5760, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 200, + "timeSeconds": 85.525, + "sulfur": 5000, + "fuel": null + } + ] + }, + { + "key": "-961457160", + "name": "New Year Gong", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 6, + "timeSeconds": 2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 16.441284064285, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 7, + "timeSeconds": 36, + "sulfur": 1400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 12, + "timeSeconds": 18.15, + "sulfur": 1440, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 23, + "timeSeconds": 34.5, + "sulfur": null, + "fuel": 115 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 58, + "timeSeconds": 72.1, + "sulfur": 3480, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 165, + "timeSeconds": 37.3, + "sulfur": null, + "fuel": 165 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 204, + "timeSeconds": 41.2, + "sulfur": null, + "fuel": 204 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 20.5, + "sulfur": null, + "fuel": 150 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 10.5, + "sulfur": 960, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 35, + "timeSeconds": 14.4, + "sulfur": 875, + "fuel": null + } + ] + }, + { + "key": "-1832422579", + "name": "One Sided Town Sign Post", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 10, + "timeSeconds": 9.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 2800, + "fuel": 60 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 2.4661926096428, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 10, + "timeSeconds": 54, + "sulfur": 2000, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 16, + "timeSeconds": 22.95, + "sulfur": 1920, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 4, + "timeSeconds": 15.5, + "sulfur": null, + "fuel": 20 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 71, + "timeSeconds": 87.7, + "sulfur": 4260, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 25, + "timeSeconds": 19.9, + "sulfur": null, + "fuel": 25 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 31, + "timeSeconds": 20.5, + "sulfur": null, + "fuel": 31 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 10.5, + "sulfur": 960, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 53, + "timeSeconds": 21.775, + "sulfur": 1325, + "fuel": null + } + ] + }, + { + "key": "-1286302544", + "name": "OR Switch", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 1.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 3.2882568128571, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 24, + "sulfur": 1000, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 8.55, + "sulfur": 480, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 5, + "timeSeconds": 16.5, + "sulfur": null, + "fuel": 25 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 7.3, + "sulfur": 240, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 33, + "timeSeconds": 20.7, + "sulfur": null, + "fuel": 33 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 41, + "timeSeconds": 21.5, + "sulfur": null, + "fuel": 41 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 23, + "timeSeconds": 8.075, + "sulfur": 575, + "fuel": null + } + ] + }, + { + "key": "-7270019", + "name": "Orange Boomer", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1.6441284064285, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6.15, + "sulfur": 240, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 3, + "timeSeconds": 14.5, + "sulfur": null, + "fuel": 15 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 4.9, + "sulfur": 120, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 17, + "timeSeconds": 19.1, + "sulfur": null, + "fuel": 17 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 21, + "timeSeconds": 19.5, + "sulfur": null, + "fuel": 21 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 9, + "timeSeconds": 1.4, + "sulfur": 225, + "fuel": null + } + ] + }, + { + "key": "-733625651", + "name": "Paddling Pool", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 4.95, + "sulfur": 120, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 1, + "timeSeconds": 12.5, + "sulfur": null, + "fuel": 5 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 3.7, + "sulfur": 60, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 9, + "timeSeconds": 18.3, + "sulfur": null, + "fuel": 9 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 11, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 11 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 1, + "timeSeconds": 1, + "sulfur": 25, + "fuel": null + } + ] + }, + { + "key": "-379734527", + "name": "Pattern Boomer", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1.6441284064285, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6.15, + "sulfur": 240, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 3, + "timeSeconds": 14.5, + "sulfur": null, + "fuel": 15 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 4.9, + "sulfur": 120, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 17, + "timeSeconds": 19.1, + "sulfur": null, + "fuel": 17 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 21, + "timeSeconds": 19.5, + "sulfur": null, + "fuel": 21 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 9, + "timeSeconds": 1.4, + "sulfur": 225, + "fuel": null + } + ] + }, + { + "key": "-1442496789", + "name": "Pinata", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1.6441284064285, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6.15, + "sulfur": 240, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 2, + "timeSeconds": 13.5, + "sulfur": null, + "fuel": 10 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 4.9, + "sulfur": 120, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 17, + "timeSeconds": 19.1, + "sulfur": null, + "fuel": 17 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 21, + "timeSeconds": 19.5, + "sulfur": null, + "fuel": 21 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 12, + "timeSeconds": 1.925, + "sulfur": 300, + "fuel": null + } + ] + }, + { + "key": "-1651220691", + "name": "Pookie Bear", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 4.95, + "sulfur": 120, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 1, + "timeSeconds": 12.5, + "sulfur": null, + "fuel": 5 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 3.7, + "sulfur": 60, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 17.9, + "sulfur": null, + "fuel": 5 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 6, + "timeSeconds": 18, + "sulfur": null, + "fuel": 6 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 2, + "timeSeconds": 1, + "sulfur": 50, + "fuel": null + } + ] + }, + { + "key": "-1370759135", + "name": "Portrait Picture Frame", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 1.6, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1.2330963048214, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 24, + "sulfur": 1000, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 8, + "timeSeconds": 13.35, + "sulfur": 960, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 2, + "timeSeconds": 13.5, + "sulfur": null, + "fuel": 10 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 36, + "timeSeconds": 45.7, + "sulfur": 2160, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 13, + "timeSeconds": 18.7, + "sulfur": null, + "fuel": 13 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 16, + "timeSeconds": 19, + "sulfur": null, + "fuel": 16 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 27, + "timeSeconds": 8.775, + "sulfur": 675, + "fuel": null + } + ] + }, + { + "key": "-365097295", + "name": "Powered Water Purifier", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 1.6, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 4.9323852192856, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 7, + "timeSeconds": 36, + "sulfur": 1400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 9.75, + "sulfur": 600, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 7, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 35 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 6, + "timeSeconds": 9.7, + "sulfur": 360, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 50, + "timeSeconds": 22.4, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 62, + "timeSeconds": 23.6, + "sulfur": null, + "fuel": 62 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 34, + "timeSeconds": 14.225, + "sulfur": 850, + "fuel": null + } + ] + }, + { + "key": "-2049214035", + "name": "Pressure Pad", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 1.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 3.2882568128571, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 8.55, + "sulfur": 480, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 5, + "timeSeconds": 16.5, + "sulfur": null, + "fuel": 25 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 6.1, + "sulfur": 180, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 33, + "timeSeconds": 20.7, + "sulfur": null, + "fuel": 33 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 41, + "timeSeconds": 21.5, + "sulfur": null, + "fuel": 41 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 23, + "timeSeconds": 8.075, + "sulfur": 575, + "fuel": null + } + ] + }, + { + "key": "-956706906", + "name": "Prison Cell Gate", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 11, + "timeSeconds": 9.6, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 2800, + "fuel": 60 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 13, + "timeSeconds": 72, + "sulfur": 2600, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": "Stuck (right click)", + "quantity": 21, + "timeSeconds": 81.375, + "sulfur": 2520, + "fuel": null + }, + { + "toolId": 143803535, + "side": null, + "caption": "Stuck (right click)", + "quantity": 60, + "timeSeconds": 151.75, + "sulfur": 3600, + "fuel": null + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 15, + "sulfur": 2400, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 75, + "timeSeconds": 29.85, + "sulfur": 1875, + "fuel": null + } + ] + }, + { + "key": "-1429456799", + "name": "Prison Cell Wall", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 11, + "timeSeconds": 9.6, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 2800, + "fuel": 60 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 13, + "timeSeconds": 72, + "sulfur": 2600, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": "Stuck (right click)", + "quantity": 21, + "timeSeconds": 81.375, + "sulfur": 2520, + "fuel": null + }, + { + "toolId": 143803535, + "side": null, + "caption": "Stuck (right click)", + "quantity": 60, + "timeSeconds": 151.75, + "sulfur": 3600, + "fuel": null + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 15, + "sulfur": 2400, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 75, + "timeSeconds": 29.85, + "sulfur": 1875, + "fuel": null + } + ] + }, + { + "key": "-1736356576", + "name": "Reactive Target", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 2.0551605080357, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 9, + "timeSeconds": 48, + "sulfur": 1800, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 7.35, + "sulfur": 360, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 3, + "timeSeconds": 14.5, + "sulfur": null, + "fuel": 15 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 6.1, + "sulfur": 180, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 21, + "timeSeconds": 19.5, + "sulfur": null, + "fuel": 21 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 26, + "timeSeconds": 20, + "sulfur": null, + "fuel": 26 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 50, + "timeSeconds": 21.25, + "sulfur": 1250, + "fuel": null + } + ] + }, + { + "key": "-1553999294", + "name": "Red Boomer", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1.6441284064285, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6.15, + "sulfur": 240, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 3, + "timeSeconds": 14.5, + "sulfur": null, + "fuel": 15 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 4.9, + "sulfur": 120, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 17, + "timeSeconds": 19.1, + "sulfur": null, + "fuel": 17 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 21, + "timeSeconds": 19.5, + "sulfur": null, + "fuel": 21 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 9, + "timeSeconds": 1.4, + "sulfur": 225, + "fuel": null + } + ] + }, + { + "key": "-1160621614", + "name": "Red Industrial Wall Light", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 6, + "timeSeconds": 2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 24, + "sulfur": 1000, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 10, + "timeSeconds": 15.75, + "sulfur": 1200, + "fuel": null + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 27, + "timeSeconds": 34.9, + "sulfur": 1620, + "fuel": null + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 10.5, + "sulfur": 960, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 23, + "timeSeconds": 8.075, + "sulfur": 575, + "fuel": null + } + ] + }, + { + "key": "-1486461488", + "name": "Red Roman Candle", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 4.95, + "sulfur": 120, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 1, + "timeSeconds": 12.5, + "sulfur": null, + "fuel": 5 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 3.7, + "sulfur": 60, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 9, + "timeSeconds": 18.3, + "sulfur": null, + "fuel": 9 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 11, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 11 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 3, + "timeSeconds": 1, + "sulfur": 75, + "fuel": null + } + ] + }, + { + "key": "-454370658", + "name": "Red Volcano Firework", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 4.95, + "sulfur": 120, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 1, + "timeSeconds": 12.5, + "sulfur": null, + "fuel": 5 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 3.7, + "sulfur": 60, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 9, + "timeSeconds": 18.3, + "sulfur": null, + "fuel": 9 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 11, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 11 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 3, + "timeSeconds": 1, + "sulfur": 75, + "fuel": null + } + ] + }, + { + "key": "-1861522751", + "name": "Research Table", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 1.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 3.2882568128571, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 8.55, + "sulfur": 480, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 5, + "timeSeconds": 16.5, + "sulfur": null, + "fuel": 25 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 6.1, + "sulfur": 180, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 33, + "timeSeconds": 20.7, + "sulfur": null, + "fuel": 33 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 41, + "timeSeconds": 21.5, + "sulfur": null, + "fuel": 41 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 23, + "timeSeconds": 8.075, + "sulfur": 575, + "fuel": null + } + ] + }, + { + "key": "-1044468317", + "name": "RF Broadcaster", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 7.35, + "sulfur": 360, + "fuel": null + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 7, + "timeSeconds": 10.9, + "sulfur": 420, + "fuel": null + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 6, + "timeSeconds": 1, + "sulfur": 150, + "fuel": null + } + ] + }, + { + "key": "-1863063690", + "name": "Rocking Chair", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1.6441284064285, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6.15, + "sulfur": 240, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 3, + "timeSeconds": 14.5, + "sulfur": null, + "fuel": 15 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 4.9, + "sulfur": 120, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 17, + "timeSeconds": 19.1, + "sulfur": null, + "fuel": 17 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 21, + "timeSeconds": 19.5, + "sulfur": null, + "fuel": 21 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 12, + "timeSeconds": 1.925, + "sulfur": 300, + "fuel": null + } + ] + }, + { + "key": "-458565393", + "name": "Root Combiner", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 1.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 3.2882568128571, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 24, + "sulfur": 1000, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 8.55, + "sulfur": 480, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 5, + "timeSeconds": 16.5, + "sulfur": null, + "fuel": 25 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 7.3, + "sulfur": 240, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 33, + "timeSeconds": 20.7, + "sulfur": null, + "fuel": 33 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 41, + "timeSeconds": 21.5, + "sulfur": null, + "fuel": 41 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 23, + "timeSeconds": 8.075, + "sulfur": 575, + "fuel": null + } + ] + }, + { + "key": "-1985799200", + "name": "Rug", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1.6441284064285, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 12, + "sulfur": 600, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6.15, + "sulfur": 240, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 3, + "timeSeconds": 14.5, + "sulfur": null, + "fuel": 15 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 4.9, + "sulfur": 120, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 17, + "timeSeconds": 19.1, + "sulfur": null, + "fuel": 17 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 21, + "timeSeconds": 19.5, + "sulfur": null, + "fuel": 21 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 12, + "timeSeconds": 1.925, + "sulfur": 300, + "fuel": null + } + ] + }, + { + "key": "-1104881824", + "name": "Bear Skin Rug", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1.6441284064285, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 12, + "sulfur": 600, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6.15, + "sulfur": 240, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 3, + "timeSeconds": 14.5, + "sulfur": null, + "fuel": 15 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 4.9, + "sulfur": 120, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 17, + "timeSeconds": 19.1, + "sulfur": null, + "fuel": 17 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 21, + "timeSeconds": 19.5, + "sulfur": null, + "fuel": 21 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 12, + "timeSeconds": 1.925, + "sulfur": 300, + "fuel": null + } + ] + }, + { + "key": "-173268132", + "name": "Rustig\u00E9 Egg - Blue", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 2.8772247112499, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 18, + "sulfur": 800, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 7.35, + "sulfur": 360, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 4, + "timeSeconds": 15.5, + "sulfur": null, + "fuel": 20 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 7.3, + "sulfur": 240, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 29, + "timeSeconds": 20.3, + "sulfur": null, + "fuel": 29 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 36, + "timeSeconds": 21, + "sulfur": null, + "fuel": 36 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 20, + "timeSeconds": 7.55, + "sulfur": 500, + "fuel": null + } + ] + }, + { + "key": "-173268125", + "name": "Rustig\u00E9 Egg - Green", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 2.8772247112499, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 18, + "sulfur": 800, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 7.35, + "sulfur": 360, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 4, + "timeSeconds": 15.5, + "sulfur": null, + "fuel": 20 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 7.3, + "sulfur": 240, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 29, + "timeSeconds": 20.3, + "sulfur": null, + "fuel": 29 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 36, + "timeSeconds": 21, + "sulfur": null, + "fuel": 36 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 20, + "timeSeconds": 7.55, + "sulfur": 500, + "fuel": null + } + ] + }, + { + "key": "-173268126", + "name": "Rustig\u00E9 Egg - Ivory", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 2.8772247112499, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 18, + "sulfur": 800, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 7.35, + "sulfur": 360, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 4, + "timeSeconds": 15.5, + "sulfur": null, + "fuel": 20 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 7.3, + "sulfur": 240, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 29, + "timeSeconds": 20.3, + "sulfur": null, + "fuel": 29 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 36, + "timeSeconds": 21, + "sulfur": null, + "fuel": 36 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 20, + "timeSeconds": 7.55, + "sulfur": 500, + "fuel": null + } + ] + }, + { + "key": "-173268131", + "name": "Rustig\u00E9 Egg - Purple", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 2.8772247112499, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 18, + "sulfur": 800, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 7.35, + "sulfur": 360, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 4, + "timeSeconds": 15.5, + "sulfur": null, + "fuel": 20 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 7.3, + "sulfur": 240, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 29, + "timeSeconds": 20.3, + "sulfur": null, + "fuel": 29 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 36, + "timeSeconds": 21, + "sulfur": null, + "fuel": 36 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 20, + "timeSeconds": 7.55, + "sulfur": 500, + "fuel": null + } + ] + }, + { + "key": "-173268129", + "name": "Rustig\u00E9 Egg - Red", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 2.8772247112499, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 18, + "sulfur": 800, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 7.35, + "sulfur": 360, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 4, + "timeSeconds": 15.5, + "sulfur": null, + "fuel": 20 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 7.3, + "sulfur": 240, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 29, + "timeSeconds": 20.3, + "sulfur": null, + "fuel": 29 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 36, + "timeSeconds": 21, + "sulfur": null, + "fuel": 36 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 20, + "timeSeconds": 7.55, + "sulfur": 500, + "fuel": null + } + ] + }, + { + "key": "-173268128", + "name": "Rustig\u00E9 Egg - White", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 2.8772247112499, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 18, + "sulfur": 800, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 7.35, + "sulfur": 360, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 4, + "timeSeconds": 15.5, + "sulfur": null, + "fuel": 20 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 7.3, + "sulfur": 240, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 29, + "timeSeconds": 20.3, + "sulfur": null, + "fuel": 29 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 36, + "timeSeconds": 21, + "sulfur": null, + "fuel": 36 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 20, + "timeSeconds": 7.55, + "sulfur": 500, + "fuel": null + } + ] + }, + { + "key": "-1009359066", + "name": "SAM Site", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 16, + "timeSeconds": 17.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 18, + "sulfur": 5600, + "fuel": 120 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 11.743774331632, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 34, + "timeSeconds": 198, + "sulfur": 6800, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 16, + "timeSeconds": 22.95, + "sulfur": 1920, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 16, + "timeSeconds": 27.5, + "sulfur": null, + "fuel": 80 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 20, + "timeSeconds": 26.5, + "sulfur": 1200, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 118, + "timeSeconds": 32.6, + "sulfur": null, + "fuel": 118 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 146, + "timeSeconds": 32, + "sulfur": null, + "fuel": 146 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 19.5, + "sulfur": null, + "fuel": 100 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 10.5, + "sulfur": 960, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 200, + "timeSeconds": 85.525, + "sulfur": 5000, + "fuel": null + } + ] + }, + { + "key": "-559599960", + "name": "Sandbag Barricade", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 18, + "sulfur": 800, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 8.55, + "sulfur": 480, + "fuel": null + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 6, + "timeSeconds": 9.7, + "sulfur": 360, + "fuel": null + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 22, + "timeSeconds": 7.9, + "sulfur": 550, + "fuel": null + } + ] + }, + { + "key": "-948291630", + "name": "Seismic Sensor", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 1.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 3.2882568128571, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 24, + "sulfur": 1000, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 8.55, + "sulfur": 480, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 5, + "timeSeconds": 16.5, + "sulfur": null, + "fuel": 25 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 7.3, + "sulfur": 240, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 33, + "timeSeconds": 20.7, + "sulfur": null, + "fuel": 33 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 41, + "timeSeconds": 21.5, + "sulfur": null, + "fuel": 41 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 23, + "timeSeconds": 8.075, + "sulfur": 575, + "fuel": null + } + ] + }, + { + "key": "-2067472972", + "name": "Sheet Metal Door", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 9, + "timeSeconds": 8.8, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 2800, + "fuel": 60 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 11, + "timeSeconds": null, + "sulfur": 2200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": "Stuck (right click)", + "quantity": 18, + "timeSeconds": 70.125, + "sulfur": 2160, + "fuel": null + }, + { + "toolId": 143803535, + "side": null, + "caption": "Stuck (right click)", + "quantity": 50, + "timeSeconds": 126.75, + "sulfur": 3000, + "fuel": null + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 13.5, + "sulfur": 1920, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 63, + "timeSeconds": 23.525, + "sulfur": 1575, + "fuel": null + } + ] + }, + { + "key": "-796583652", + "name": "Shop Front", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 8, + "timeSeconds": 8.4, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 20.551605080357, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 8, + "timeSeconds": 42, + "sulfur": 1600, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": "Stuck (right click)", + "quantity": 15, + "timeSeconds": 58.875, + "sulfur": 1800, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 125, + "timeSeconds": 124, + "sulfur": null, + "fuel": 625 + }, + { + "toolId": 143803535, + "side": null, + "caption": "Stuck (right click)", + "quantity": 58, + "timeSeconds": 146.75, + "sulfur": 3480, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 206, + "timeSeconds": 44.8, + "sulfur": null, + "fuel": 206 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 255, + "timeSeconds": 46.3, + "sulfur": null, + "fuel": 255 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 21.5, + "sulfur": null, + "fuel": 200 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 12, + "sulfur": 1440, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 46, + "timeSeconds": 16.325, + "sulfur": 1150, + "fuel": null + } + ] + }, + { + "key": "-1073015016", + "name": "Skull Spikes", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 1.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 3.2882568128571, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 8.55, + "sulfur": 480, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 5, + "timeSeconds": 16.5, + "sulfur": null, + "fuel": 25 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 6.1, + "sulfur": 180, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 33, + "timeSeconds": 20.7, + "sulfur": null, + "fuel": 33 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 41, + "timeSeconds": 21.5, + "sulfur": null, + "fuel": 41 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 23, + "timeSeconds": 8.075, + "sulfur": 575, + "fuel": null + } + ] + }, + { + "key": "-769647921", + "name": "Skull Trophy", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 2.4661926096428, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 7.35, + "sulfur": 360, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 4, + "timeSeconds": 15.5, + "sulfur": null, + "fuel": 20 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 4.9, + "sulfur": 120, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 25, + "timeSeconds": 19.9, + "sulfur": null, + "fuel": 25 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 31, + "timeSeconds": 20.5, + "sulfur": null, + "fuel": 31 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 17, + "timeSeconds": 7.025, + "sulfur": 425, + "fuel": null + } + ] + }, + { + "key": "-333406828", + "name": "Sled", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 1.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 3.2882568128571, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 8.55, + "sulfur": 480, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 5, + "timeSeconds": 16.5, + "sulfur": null, + "fuel": 25 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 6.1, + "sulfur": 180, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 33, + "timeSeconds": 20.7, + "sulfur": null, + "fuel": 33 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 41, + "timeSeconds": 21.5, + "sulfur": null, + "fuel": 41 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 23, + "timeSeconds": 8.075, + "sulfur": 575, + "fuel": null + } + ] + }, + { + "key": "-1754948969", + "name": "Sleeping Bag", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 1.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 3.2882568128571, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 24, + "sulfur": 1000, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 8.55, + "sulfur": 480, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 5, + "timeSeconds": 16.5, + "sulfur": null, + "fuel": 25 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 7.3, + "sulfur": 240, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 33, + "timeSeconds": 20.7, + "sulfur": null, + "fuel": 33 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 41, + "timeSeconds": 21.5, + "sulfur": null, + "fuel": 41 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 23, + "timeSeconds": 8.075, + "sulfur": 575, + "fuel": null + } + ] + }, + { + "key": "-2058362263", + "name": "Small Candle Set", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 7.35, + "sulfur": 360, + "fuel": null + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 7, + "timeSeconds": 10.9, + "sulfur": 420, + "fuel": null + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 6, + "timeSeconds": 1, + "sulfur": 150, + "fuel": null + } + ] + }, + { + "key": "-869598982", + "name": "Small Hunting Trophy", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 12, + "sulfur": 600, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 8.55, + "sulfur": 480, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 1, + "timeSeconds": 12.5, + "sulfur": null, + "fuel": 5 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 18, + "timeSeconds": 24.1, + "sulfur": 1080, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 7, + "timeSeconds": 18.1, + "sulfur": null, + "fuel": 7 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 8, + "timeSeconds": 18.2, + "sulfur": null, + "fuel": 8 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 14, + "timeSeconds": 2.275, + "sulfur": 350, + "fuel": null + } + ] + }, + { + "key": "-1293296287", + "name": "Small Oil Refinery", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 24, + "timeSeconds": 26, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 24, + "sulfur": 7000, + "fuel": 150 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 24.661926096428, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 34, + "timeSeconds": 198, + "sulfur": 6800, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 13, + "sulfur": 6600, + "fuel": 180 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 24, + "timeSeconds": 32.55, + "sulfur": 2880, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 34, + "timeSeconds": 45.5, + "sulfur": null, + "fuel": 170 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 27, + "timeSeconds": 34.9, + "sulfur": 1620, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 247, + "timeSeconds": 48.9, + "sulfur": null, + "fuel": 247 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 306, + "timeSeconds": 54.8, + "sulfur": null, + "fuel": 306 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 22.5, + "sulfur": null, + "fuel": 250 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 6, + "timeSeconds": 16.5, + "sulfur": 2880, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 167, + "timeSeconds": 71.3, + "sulfur": 4175, + "fuel": null + } + ] + }, + { + "key": "-692338819", + "name": "Small Rechargeable Battery", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 6, + "timeSeconds": 2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 16.441284064285, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 7, + "timeSeconds": 36, + "sulfur": 1400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 12, + "timeSeconds": 18.15, + "sulfur": 1440, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 23, + "timeSeconds": 34.5, + "sulfur": null, + "fuel": 115 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 58, + "timeSeconds": 72.1, + "sulfur": 3480, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 165, + "timeSeconds": 37.3, + "sulfur": null, + "fuel": 165 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 204, + "timeSeconds": 41.2, + "sulfur": null, + "fuel": 204 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 20.5, + "sulfur": null, + "fuel": 150 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 10.5, + "sulfur": 960, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 35, + "timeSeconds": 14.4, + "sulfur": 875, + "fuel": null + } + ] + }, + { + "key": "-369760990", + "name": "Small Stash", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 2.4661926096428, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 7.35, + "sulfur": 360, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 4, + "timeSeconds": 15.5, + "sulfur": null, + "fuel": 20 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 4.9, + "sulfur": 120, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 25, + "timeSeconds": 19.9, + "sulfur": null, + "fuel": 25 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 31, + "timeSeconds": 20.5, + "sulfur": null, + "fuel": 31 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 17, + "timeSeconds": 7.025, + "sulfur": 425, + "fuel": null + } + ] + }, + { + "key": "-132247350", + "name": "Small Water Catcher", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 1.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 3.2882568128571, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 24, + "sulfur": 1000, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 8.55, + "sulfur": 480, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 5, + "timeSeconds": 16.5, + "sulfur": null, + "fuel": 25 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 7.3, + "sulfur": 240, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 33, + "timeSeconds": 20.7, + "sulfur": null, + "fuel": 33 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 41, + "timeSeconds": 21.5, + "sulfur": null, + "fuel": 41 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 23, + "timeSeconds": 8.075, + "sulfur": 575, + "fuel": null + } + ] + }, + { + "key": "-1138208076", + "name": "Small Wooden Sign", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 7.35, + "sulfur": 360, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 1, + "timeSeconds": 12.5, + "sulfur": null, + "fuel": 5 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 12, + "timeSeconds": 16.9, + "sulfur": 720, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 17.9, + "sulfur": null, + "fuel": 5 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 6, + "timeSeconds": 18, + "sulfur": null, + "fuel": 6 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 9, + "timeSeconds": 1.4, + "sulfur": 225, + "fuel": null + } + ] + }, + { + "key": "-695978112", + "name": "Smart Alarm", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 7.35, + "sulfur": 360, + "fuel": null + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 7, + "timeSeconds": 10.9, + "sulfur": 420, + "fuel": null + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 6, + "timeSeconds": 1, + "sulfur": 150, + "fuel": null + } + ] + }, + { + "key": "-582782051", + "name": "Snap Trap", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1.6441284064285, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6.15, + "sulfur": 240, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 2, + "timeSeconds": 13.5, + "sulfur": null, + "fuel": 10 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 3.7, + "sulfur": 60, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 17, + "timeSeconds": 19.1, + "sulfur": null, + "fuel": 17 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 21, + "timeSeconds": 19.5, + "sulfur": null, + "fuel": 21 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 5, + "timeSeconds": 1, + "sulfur": 125, + "fuel": null + } + ] + }, + { + "key": "-555122905", + "name": "Sofa", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 1.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 3.2882568128571, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 8.55, + "sulfur": 480, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 5, + "timeSeconds": 16.5, + "sulfur": null, + "fuel": 25 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 6.1, + "sulfur": 180, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 33, + "timeSeconds": 20.7, + "sulfur": null, + "fuel": 33 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 41, + "timeSeconds": 21.5, + "sulfur": null, + "fuel": 41 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 23, + "timeSeconds": 8.075, + "sulfur": 575, + "fuel": null + } + ] + }, + { + "key": "-343857907", + "name": "Sound Light", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 4.95, + "sulfur": 120, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 2, + "timeSeconds": 13.5, + "sulfur": null, + "fuel": 10 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 3.7, + "sulfur": 60, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 9, + "timeSeconds": 18.3, + "sulfur": null, + "fuel": 9 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 11, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 11 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 6, + "timeSeconds": 1, + "sulfur": 150, + "fuel": null + } + ] + }, + { + "key": "-1100422738", + "name": "Spinning Wheel", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 7.35, + "sulfur": 360, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 1, + "timeSeconds": 12.5, + "sulfur": null, + "fuel": 5 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 12, + "timeSeconds": 16.9, + "sulfur": 720, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 17.9, + "sulfur": null, + "fuel": 5 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 6, + "timeSeconds": 18, + "sulfur": null, + "fuel": 6 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 9, + "timeSeconds": 1.4, + "sulfur": 225, + "fuel": null + } + ] + }, + { + "key": "-563624462", + "name": "Splitter", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 8, + "timeSeconds": 8.4, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 2800, + "fuel": 60 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 8.2206420321427, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 12, + "timeSeconds": 66, + "sulfur": 2400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 8, + "timeSeconds": 13.35, + "sulfur": 960, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 12, + "timeSeconds": 23.5, + "sulfur": null, + "fuel": 60 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 9, + "timeSeconds": 13.3, + "sulfur": 540, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 83, + "timeSeconds": 25.7, + "sulfur": null, + "fuel": 83 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 102, + "timeSeconds": 27.6, + "sulfur": null, + "fuel": 102 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 19.5, + "sulfur": null, + "fuel": 100 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 56, + "timeSeconds": 22.3, + "sulfur": 1400, + "fuel": null + } + ] + }, + { + "key": "-781014061", + "name": "Sprinkler", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 1.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 3.2882568128571, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 24, + "sulfur": 1000, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 8.55, + "sulfur": 480, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 5, + "timeSeconds": 16.5, + "sulfur": null, + "fuel": 25 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 7.3, + "sulfur": 240, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 33, + "timeSeconds": 20.7, + "sulfur": null, + "fuel": 33 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 41, + "timeSeconds": 21.5, + "sulfur": null, + "fuel": 41 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 23, + "timeSeconds": 8.075, + "sulfur": 575, + "fuel": null + } + ] + }, + { + "key": "-1535621066", + "name": "Stone Fireplace", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 8, + "timeSeconds": 8.4, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 2800, + "fuel": 60 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 8.2206420321427, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 12, + "timeSeconds": 66, + "sulfur": 2400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 8, + "timeSeconds": 13.35, + "sulfur": 960, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 12, + "timeSeconds": 23.5, + "sulfur": null, + "fuel": 60 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 9, + "timeSeconds": 13.3, + "sulfur": 540, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 83, + "timeSeconds": 25.7, + "sulfur": null, + "fuel": 83 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 102, + "timeSeconds": 27.6, + "sulfur": null, + "fuel": 102 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 19.5, + "sulfur": null, + "fuel": 100 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 56, + "timeSeconds": 22.3, + "sulfur": 1400, + "fuel": null + } + ] + }, + { + "key": "-1049172752", + "name": "Storage Adaptor", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 4.95, + "sulfur": 120, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 1, + "timeSeconds": 12.5, + "sulfur": null, + "fuel": 5 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 3.7, + "sulfur": 60, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 17.9, + "sulfur": null, + "fuel": 5 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 7, + "timeSeconds": 18.1, + "sulfur": null, + "fuel": 7 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 4, + "timeSeconds": 1, + "sulfur": 100, + "fuel": null + } + ] + }, + { + "key": "-1421257350", + "name": "Storage Barrel Horizontal", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 1.6, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 4.9323852192856, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 9.75, + "sulfur": 600, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 7, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 35 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 7.3, + "sulfur": 240, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 50, + "timeSeconds": 22.4, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 62, + "timeSeconds": 23.6, + "sulfur": null, + "fuel": 62 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 34, + "timeSeconds": 14.225, + "sulfur": 850, + "fuel": null + } + ] + }, + { + "key": "-1614955425", + "name": "Strengthened Glass Window", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 20, + "timeSeconds": 24.4, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 12, + "sulfur": 4200, + "fuel": 90 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 24, + "timeSeconds": 138, + "sulfur": 4800, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 11.5, + "sulfur": 4400, + "fuel": 120 + }, + { + "toolId": 1840822026, + "side": null, + "caption": "Stuck (right click)", + "quantity": 39, + "timeSeconds": 148.875, + "sulfur": 4680, + "fuel": null + }, + { + "toolId": 143803535, + "side": null, + "caption": "Stuck (right click)", + "quantity": 348, + "timeSeconds": 871.75, + "sulfur": 20880, + "fuel": null + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 9, + "timeSeconds": 21, + "sulfur": 4320, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 140, + "timeSeconds": 58.125, + "sulfur": 3500, + "fuel": null + } + ] + }, + { + "key": "-465682601", + "name": "SUPER Stocking", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 4.95, + "sulfur": 120, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 1, + "timeSeconds": 12.5, + "sulfur": null, + "fuel": 5 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 3.7, + "sulfur": 60, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 9, + "timeSeconds": 18.3, + "sulfur": null, + "fuel": 9 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 11, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 11 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 3, + "timeSeconds": 1, + "sulfur": 75, + "fuel": null + } + ] + }, + { + "key": "-626174997", + "name": "Taxi Vehicle Module", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 13, + "timeSeconds": 16, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 2800, + "fuel": 60 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 118, + "timeSeconds": 702, + "sulfur": 35400, + "fuel": 8850 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 22, + "timeSeconds": 30.15, + "sulfur": 2640, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 99, + "timeSeconds": 98, + "sulfur": null, + "fuel": 495 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 6, + "timeSeconds": 9.7, + "sulfur": 360, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 1736, + "timeSeconds": 231.3, + "sulfur": null, + "fuel": 1736 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 1475, + "timeSeconds": 178, + "sulfur": null, + "fuel": 1475 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 169, + "timeSeconds": 186.5, + "sulfur": null, + "fuel": 8450 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 12, + "sulfur": 1440, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 43, + "timeSeconds": 15.8, + "sulfur": 1075, + "fuel": null + } + ] + }, + { + "key": "-295829489", + "name": "Test Generator", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 16, + "timeSeconds": 17.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 18, + "sulfur": 5600, + "fuel": 120 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 16.441284064285, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 23, + "timeSeconds": 132, + "sulfur": 4600, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 16, + "timeSeconds": 22.95, + "sulfur": 1920, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 23, + "timeSeconds": 34.5, + "sulfur": null, + "fuel": 115 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 18, + "timeSeconds": 24.1, + "sulfur": 1080, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 165, + "timeSeconds": 37.3, + "sulfur": null, + "fuel": 165 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 204, + "timeSeconds": 41.2, + "sulfur": null, + "fuel": 204 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 20.5, + "sulfur": null, + "fuel": 150 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 10.5, + "sulfur": 960, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 112, + "timeSeconds": 44.775, + "sulfur": 2800, + "fuel": null + } + ] + }, + { + "key": "-97956382", + "name": "Tool Cupboard", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 4.1103210160714, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 8.55, + "sulfur": 480, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 6, + "timeSeconds": 17.5, + "sulfur": null, + "fuel": 30 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 43, + "timeSeconds": 54.1, + "sulfur": 2580, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 42, + "timeSeconds": 21.6, + "sulfur": null, + "fuel": 42 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 51, + "timeSeconds": 22.5, + "sulfur": null, + "fuel": 51 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 10, + "timeSeconds": 1.575, + "sulfur": 250, + "fuel": null + } + ] + }, + { + "key": "-1478445584", + "name": "Tuna Can Lamp", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 7.35, + "sulfur": 360, + "fuel": null + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 7, + "timeSeconds": 10.9, + "sulfur": 420, + "fuel": null + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 6, + "timeSeconds": 1, + "sulfur": 150, + "fuel": null + } + ] + }, + { + "key": "-901370585", + "name": "Twitch Rivals Trophy 2023", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 4.95, + "sulfur": 120, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 1, + "timeSeconds": 12.5, + "sulfur": null, + "fuel": 5 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 3.7, + "sulfur": 60, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 17.9, + "sulfur": null, + "fuel": 5 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 6, + "timeSeconds": 18, + "sulfur": null, + "fuel": 6 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 2, + "timeSeconds": 1, + "sulfur": 50, + "fuel": null + } + ] + }, + { + "key": "-1647846966", + "name": "Two Sided Ornate Hanging Sign", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 10, + "timeSeconds": 9.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 2800, + "fuel": 60 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 2.4661926096428, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 10, + "timeSeconds": 54, + "sulfur": 2000, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 16, + "timeSeconds": 22.95, + "sulfur": 1920, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 4, + "timeSeconds": 15.5, + "sulfur": null, + "fuel": 20 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 71, + "timeSeconds": 87.7, + "sulfur": 4260, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 25, + "timeSeconds": 19.9, + "sulfur": null, + "fuel": 25 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 31, + "timeSeconds": 20.5, + "sulfur": null, + "fuel": 31 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 10.5, + "sulfur": 960, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 53, + "timeSeconds": 21.775, + "sulfur": 1325, + "fuel": null + } + ] + }, + { + "key": "-280223496", + "name": "Violet Boomer", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1.6441284064285, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6.15, + "sulfur": 240, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 3, + "timeSeconds": 14.5, + "sulfur": null, + "fuel": 15 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 4.9, + "sulfur": 120, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 17, + "timeSeconds": 19.1, + "sulfur": null, + "fuel": 17 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 21, + "timeSeconds": 19.5, + "sulfur": null, + "fuel": 21 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 9, + "timeSeconds": 1.4, + "sulfur": 225, + "fuel": null + } + ] + }, + { + "key": "-99886070", + "name": "Violet Roman Candle", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 4.95, + "sulfur": 120, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 1, + "timeSeconds": 12.5, + "sulfur": null, + "fuel": 5 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 3.7, + "sulfur": 60, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 9, + "timeSeconds": 18.3, + "sulfur": null, + "fuel": 9 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 11, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 11 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 3, + "timeSeconds": 1, + "sulfur": 75, + "fuel": null + } + ] + }, + { + "key": "-1538109120", + "name": "Violet Volcano Firework", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 4.95, + "sulfur": 120, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 1, + "timeSeconds": 12.5, + "sulfur": null, + "fuel": 5 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 3.7, + "sulfur": 60, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 9, + "timeSeconds": 18.3, + "sulfur": null, + "fuel": 9 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 11, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 11 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 3, + "timeSeconds": 1, + "sulfur": 75, + "fuel": null + } + ] + }, + { + "key": "-1344017968", + "name": "Wanted Poster", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1.6441284064285, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6.15, + "sulfur": 240, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 3, + "timeSeconds": 14.5, + "sulfur": null, + "fuel": 15 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 4.9, + "sulfur": 120, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 17, + "timeSeconds": 19.1, + "sulfur": null, + "fuel": 17 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 21, + "timeSeconds": 19.5, + "sulfur": null, + "fuel": 21 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 12, + "timeSeconds": 1.925, + "sulfur": 300, + "fuel": null + } + ] + }, + { + "key": "-463122489", + "name": "Watch Tower", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 7, + "timeSeconds": 8, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 16.441284064285, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 7, + "timeSeconds": 36, + "sulfur": 1400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 11, + "timeSeconds": 16.95, + "sulfur": 1320, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 23, + "timeSeconds": 34.5, + "sulfur": null, + "fuel": 115 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 48, + "timeSeconds": null, + "sulfur": 2880, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 165, + "timeSeconds": 37.3, + "sulfur": null, + "fuel": 165 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 204, + "timeSeconds": 41.2, + "sulfur": null, + "fuel": 204 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 20.5, + "sulfur": null, + "fuel": 150 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 10.5, + "sulfur": 960, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 36, + "timeSeconds": 14.575, + "sulfur": 900, + "fuel": null + } + ] + }, + { + "key": "-1863559151", + "name": "Water Barrel", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 1.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 4.1103210160714, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 6, + "timeSeconds": 30, + "sulfur": 1200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 8.55, + "sulfur": 480, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 6, + "timeSeconds": 17.5, + "sulfur": null, + "fuel": 30 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 8.5, + "sulfur": 300, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 42, + "timeSeconds": 21.6, + "sulfur": null, + "fuel": 42 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 51, + "timeSeconds": 22.5, + "sulfur": null, + "fuel": 51 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 28, + "timeSeconds": 8.95, + "sulfur": 700, + "fuel": null + } + ] + }, + { + "key": "-1284169891", + "name": "Water Pump", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 1.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 4.1103210160714, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 6, + "timeSeconds": 30, + "sulfur": 1200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 8.55, + "sulfur": 480, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 6, + "timeSeconds": 17.5, + "sulfur": null, + "fuel": 30 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 8.5, + "sulfur": 300, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 42, + "timeSeconds": 21.6, + "sulfur": null, + "fuel": 42 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 51, + "timeSeconds": 22.5, + "sulfur": null, + "fuel": 51 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 28, + "timeSeconds": 8.95, + "sulfur": 700, + "fuel": null + } + ] + }, + { + "key": "-96256997", + "name": "Wide Weapon Rack", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 1.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 3.2882568128571, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 8.55, + "sulfur": 480, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 5, + "timeSeconds": 16.5, + "sulfur": null, + "fuel": 25 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 6.1, + "sulfur": 180, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 33, + "timeSeconds": 20.7, + "sulfur": null, + "fuel": 33 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 41, + "timeSeconds": 21.5, + "sulfur": null, + "fuel": 41 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 23, + "timeSeconds": 8.075, + "sulfur": 575, + "fuel": null + } + ] + }, + { + "key": "-1819763926", + "name": "Wind Turbine", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 14, + "timeSeconds": 16.4, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 2800, + "fuel": 60 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 17, + "timeSeconds": 96, + "sulfur": 3400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 30, + "timeSeconds": 39.75, + "sulfur": 3600, + "fuel": null + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 250, + "timeSeconds": 302.5, + "sulfur": 15000, + "fuel": null + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 7, + "timeSeconds": 18, + "sulfur": 3360, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 100, + "timeSeconds": 42.675, + "sulfur": 2500, + "fuel": null + } + ] + }, + { + "key": "-1336109173", + "name": "Wood Double Door", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 8.2206420321427, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 18, + "sulfur": 800, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": "Stuck (right click)", + "quantity": 6, + "timeSeconds": 25.125, + "sulfur": 720, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 50, + "timeSeconds": 49, + "sulfur": null, + "fuel": 250 + }, + { + "toolId": 143803535, + "side": null, + "caption": "Stuck (right click)", + "quantity": 23, + "timeSeconds": 59.25, + "sulfur": 1380, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 83, + "timeSeconds": 25.7, + "sulfur": null, + "fuel": 83 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 102, + "timeSeconds": 27.6, + "sulfur": null, + "fuel": 102 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 19.5, + "sulfur": null, + "fuel": 100 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 10.5, + "sulfur": 960, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 19, + "timeSeconds": 7.375, + "sulfur": 475, + "fuel": null + } + ] + }, + { + "key": "-1023374709", + "name": "Wood Shutters", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 1.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 3.2882568128571, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": "Stuck (right click)", + "quantity": 4, + "timeSeconds": 17.625, + "sulfur": 480, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 20, + "timeSeconds": 19, + "sulfur": null, + "fuel": 100 + }, + { + "toolId": 143803535, + "side": null, + "caption": "Stuck (right click)", + "quantity": 3, + "timeSeconds": 9.25, + "sulfur": 180, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 33, + "timeSeconds": 20.7, + "sulfur": null, + "fuel": 33 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 41, + "timeSeconds": 21.5, + "sulfur": null, + "fuel": 41 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 23, + "timeSeconds": 8.075, + "sulfur": 575, + "fuel": null + } + ] + }, + { + "key": "-180129657", + "name": "Wood Storage Box", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 2.4661926096428, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 7.35, + "sulfur": 360, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 4, + "timeSeconds": 15.5, + "sulfur": null, + "fuel": 20 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 4.9, + "sulfur": 120, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 25, + "timeSeconds": 19.9, + "sulfur": null, + "fuel": 25 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 31, + "timeSeconds": 20.5, + "sulfur": null, + "fuel": 31 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 17, + "timeSeconds": 7.025, + "sulfur": 425, + "fuel": null + } + ] + }, + { + "key": "-92759291", + "name": "Wooden Floor Spikes", + "kind": 0, + "costs": [ + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1.6441284064285, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 3, + "timeSeconds": 14.5, + "sulfur": null, + "fuel": 15 + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 23, + "timeSeconds": 19.7, + "sulfur": null, + "fuel": 23 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 35, + "timeSeconds": 20.9, + "sulfur": null, + "fuel": 35 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 9, + "timeSeconds": 1.4, + "sulfur": 225, + "fuel": null + } + ] + }, + { + "key": "-1151332840", + "name": "Wooden Frontier Bar Doors", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "both", + "caption": null, + "quantity": 3, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 8.2206420321427, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": "hard", + "caption": null, + "quantity": 4, + "timeSeconds": 18, + "sulfur": 800, + "fuel": null + }, + { + "toolId": -1841918730, + "side": "soft", + "caption": null, + "quantity": 3, + "timeSeconds": 12, + "sulfur": 600, + "fuel": null + }, + { + "toolId": 1248356124, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 6, + "timeSeconds": 25.125, + "sulfur": 720, + "fuel": null + }, + { + "toolId": 14241751, + "side": "both", + "caption": "Hunting Bow", + "quantity": 50, + "timeSeconds": 49, + "sulfur": null, + "fuel": 250 + }, + { + "toolId": 143803535, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 23, + "timeSeconds": 59.25, + "sulfur": 1380, + "fuel": null + }, + { + "toolId": -1215753368, + "side": "both", + "caption": null, + "quantity": 83, + "timeSeconds": 25.7, + "sulfur": null, + "fuel": 83 + }, + { + "toolId": 703057617, + "side": "both", + "caption": null, + "quantity": 102, + "timeSeconds": 27.6, + "sulfur": null, + "fuel": 102 + }, + { + "toolId": 1556365900, + "side": "both", + "caption": null, + "quantity": 2, + "timeSeconds": 19.5, + "sulfur": null, + "fuel": 100 + }, + { + "toolId": -1878475007, + "side": "both", + "caption": null, + "quantity": 2, + "timeSeconds": 10.5, + "sulfur": 960, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "hard", + "caption": "Semi-Automatic Rifle", + "quantity": 19, + "timeSeconds": 7.375, + "sulfur": 475, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "soft", + "caption": "Semi-Automatic Rifle", + "quantity": 17, + "timeSeconds": 7.025, + "sulfur": 425, + "fuel": null + } + ] + }, + { + "key": "-316250604", + "name": "Wooden Ladder", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1.6441284064285, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6.15, + "sulfur": 240, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 3, + "timeSeconds": 14.5, + "sulfur": null, + "fuel": 15 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 4.9, + "sulfur": 120, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 17, + "timeSeconds": 19.1, + "sulfur": null, + "fuel": 17 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 21, + "timeSeconds": 19.5, + "sulfur": null, + "fuel": 21 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 9, + "timeSeconds": 1.4, + "sulfur": 225, + "fuel": null + } + ] + }, + { + "key": "-1183726687", + "name": "Wooden Window Bars", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 8, + "timeSeconds": 8.4, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 2800, + "fuel": 60 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 20.551605080357, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 9, + "timeSeconds": 48, + "sulfur": 1800, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": "Stuck (right click)", + "quantity": 13, + "timeSeconds": 51.375, + "sulfur": 1560, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 125, + "timeSeconds": 124, + "sulfur": null, + "fuel": 625 + }, + { + "toolId": 143803535, + "side": null, + "caption": "Stuck (right click)", + "quantity": 59, + "timeSeconds": 149.25, + "sulfur": 3540, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 206, + "timeSeconds": 44.8, + "sulfur": null, + "fuel": 206 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 255, + "timeSeconds": 46.3, + "sulfur": null, + "fuel": 255 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 21.5, + "sulfur": null, + "fuel": 200 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 12, + "sulfur": 1440, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 49, + "timeSeconds": 21.075, + "sulfur": 1225, + "fuel": null + } + ] + }, + { + "key": "-41896755", + "name": "Workbench Level 2", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 28, + "timeSeconds": 33.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 18, + "sulfur": 5600, + "fuel": 120 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 88.206420321427, + "sulfur": 600, + "fuel": 150 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 31, + "timeSeconds": null, + "sulfur": 6200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 59, + "timeSeconds": 74.55, + "sulfur": 7080, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 111, + "timeSeconds": 122.5, + "sulfur": null, + "fuel": 555 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 286, + "timeSeconds": 345.7, + "sulfur": 17160, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 824, + "timeSeconds": 127, + "sulfur": null, + "fuel": 824 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 1017, + "timeSeconds": 139.5, + "sulfur": null, + "fuel": 1017 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 14, + "timeSeconds": 31.5, + "sulfur": null, + "fuel": 700 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 7, + "timeSeconds": 18, + "sulfur": 3360, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 173, + "timeSeconds": 72.35, + "sulfur": 4325, + "fuel": null + } + ] + }, + { + "key": "-1607980696", + "name": "Workbench Level 3", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 42, + "timeSeconds": 50, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 6, + "timeSeconds": 30, + "sulfur": 8400, + "fuel": 180 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 129.30963048214, + "sulfur": 600, + "fuel": 150 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 46, + "timeSeconds": 270, + "sulfur": 9200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 11.5, + "sulfur": 4400, + "fuel": 120 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 89, + "timeSeconds": 110.55, + "sulfur": 10680, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 167, + "timeSeconds": 178.5, + "sulfur": null, + "fuel": 835 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 429, + "timeSeconds": 517.3, + "sulfur": 25740, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 1235, + "timeSeconds": 181.7, + "sulfur": null, + "fuel": 1235 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 1526, + "timeSeconds": 204, + "sulfur": null, + "fuel": 1526 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 21, + "timeSeconds": 38.5, + "sulfur": null, + "fuel": 1050 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 10, + "timeSeconds": 22.5, + "sulfur": 4800, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 259, + "timeSeconds": 112.75, + "sulfur": 6475, + "fuel": null + } + ] + }, + { + "key": "-996185386", + "name": "XL Picture Frame", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 10, + "timeSeconds": 9.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 2800, + "fuel": 60 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 2.4661926096428, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 10, + "timeSeconds": 54, + "sulfur": 2000, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 16, + "timeSeconds": 22.95, + "sulfur": 1920, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 4, + "timeSeconds": 15.5, + "sulfur": null, + "fuel": 20 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 71, + "timeSeconds": 87.7, + "sulfur": 4260, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 25, + "timeSeconds": 19.9, + "sulfur": null, + "fuel": 25 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 31, + "timeSeconds": 20.5, + "sulfur": null, + "fuel": 31 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 10.5, + "sulfur": 960, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 53, + "timeSeconds": 21.775, + "sulfur": 1325, + "fuel": null + } + ] + }, + { + "key": "-211235948", + "name": "Xylobone", + "kind": 0, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1.6441284064285, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6.15, + "sulfur": 240, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 3, + "timeSeconds": 14.5, + "sulfur": null, + "fuel": 15 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 4.9, + "sulfur": 120, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 17, + "timeSeconds": 19.1, + "sulfur": null, + "fuel": 17 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 21, + "timeSeconds": 19.5, + "sulfur": null, + "fuel": 21 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 12, + "timeSeconds": 1.925, + "sulfur": 300, + "fuel": null + } + ] + }, + { + "key": "Armored Doorway", + "name": "Armored Doorway", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": "both", + "caption": null, + "quantity": 12, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "hard", + "caption": null, + "quantity": 114, + "timeSeconds": 146, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "soft", + "caption": null, + "quantity": 111, + "timeSeconds": 144.8, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": "both", + "caption": null, + "quantity": 15, + "timeSeconds": 84, + "sulfur": 21000, + "fuel": 450 + }, + { + "toolId": -1841918730, + "side": "both", + "caption": null, + "quantity": 134, + "timeSeconds": 798, + "sulfur": 26800, + "fuel": null + }, + { + "toolId": 1248356124, + "side": "both", + "caption": null, + "quantity": 8, + "timeSeconds": 20.5, + "sulfur": 17600, + "fuel": 480 + }, + { + "toolId": 1840822026, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 223, + "timeSeconds": 838.875, + "sulfur": 26760, + "fuel": null + }, + { + "toolId": 143803535, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 1986, + "timeSeconds": 4966.75, + "sulfur": 119160, + "fuel": null + }, + { + "toolId": -1878475007, + "side": "both", + "caption": null, + "quantity": 46, + "timeSeconds": 76.5, + "sulfur": 22080, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "hard", + "caption": "Semi-Automatic Rifle", + "quantity": 799, + "timeSeconds": 346.675, + "sulfur": 19975, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "soft", + "caption": "Semi-Automatic Rifle", + "quantity": 798, + "timeSeconds": 346.5, + "sulfur": 19950, + "fuel": null + } + ] + }, + { + "key": "Armored Floor", + "name": "Armored Floor", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": "both", + "caption": null, + "quantity": 12, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "hard", + "caption": null, + "quantity": 114, + "timeSeconds": 146, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "soft", + "caption": null, + "quantity": 111, + "timeSeconds": 144.8, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": "both", + "caption": null, + "quantity": 15, + "timeSeconds": 84, + "sulfur": 21000, + "fuel": 450 + }, + { + "toolId": -1841918730, + "side": "both", + "caption": null, + "quantity": 134, + "timeSeconds": 798, + "sulfur": 26800, + "fuel": null + }, + { + "toolId": 1248356124, + "side": "both", + "caption": null, + "quantity": 8, + "timeSeconds": 20.5, + "sulfur": 17600, + "fuel": 480 + }, + { + "toolId": 1840822026, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 223, + "timeSeconds": 838.875, + "sulfur": 26760, + "fuel": null + }, + { + "toolId": 143803535, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 1986, + "timeSeconds": 4966.75, + "sulfur": 119160, + "fuel": null + }, + { + "toolId": -1878475007, + "side": "both", + "caption": null, + "quantity": 46, + "timeSeconds": 76.5, + "sulfur": 22080, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "hard", + "caption": "Semi-Automatic Rifle", + "quantity": 799, + "timeSeconds": 346.675, + "sulfur": 19975, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "soft", + "caption": "Semi-Automatic Rifle", + "quantity": 798, + "timeSeconds": 346.5, + "sulfur": 19950, + "fuel": null + } + ] + }, + { + "key": "Armored Floor Frame", + "name": "Armored Floor Frame", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 12, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 114, + "timeSeconds": 146, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 15, + "timeSeconds": 84, + "sulfur": 21000, + "fuel": 450 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 134, + "timeSeconds": 798, + "sulfur": 26800, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 8, + "timeSeconds": 20.5, + "sulfur": 17600, + "fuel": 480 + }, + { + "toolId": 1840822026, + "side": null, + "caption": "Stuck (right click)", + "quantity": 223, + "timeSeconds": 838.875, + "sulfur": 26760, + "fuel": null + }, + { + "toolId": 143803535, + "side": null, + "caption": "Stuck (right click)", + "quantity": 1986, + "timeSeconds": 4966.75, + "sulfur": 119160, + "fuel": null + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 46, + "timeSeconds": 76.5, + "sulfur": 22080, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 799, + "timeSeconds": 346.675, + "sulfur": 19975, + "fuel": null + } + ] + }, + { + "key": "Armored Floor Triangle", + "name": "Armored Floor Triangle", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": "both", + "caption": null, + "quantity": 12, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "hard", + "caption": null, + "quantity": 114, + "timeSeconds": 146, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "soft", + "caption": null, + "quantity": 111, + "timeSeconds": 144.8, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": "both", + "caption": null, + "quantity": 15, + "timeSeconds": 84, + "sulfur": 21000, + "fuel": 450 + }, + { + "toolId": -1841918730, + "side": "both", + "caption": null, + "quantity": 134, + "timeSeconds": 798, + "sulfur": 26800, + "fuel": null + }, + { + "toolId": 1248356124, + "side": "both", + "caption": null, + "quantity": 8, + "timeSeconds": 20.5, + "sulfur": 17600, + "fuel": 480 + }, + { + "toolId": 1840822026, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 223, + "timeSeconds": 838.875, + "sulfur": 26760, + "fuel": null + }, + { + "toolId": 143803535, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 1986, + "timeSeconds": 4966.75, + "sulfur": 119160, + "fuel": null + }, + { + "toolId": -1878475007, + "side": "both", + "caption": null, + "quantity": 46, + "timeSeconds": 76.5, + "sulfur": 22080, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "hard", + "caption": "Semi-Automatic Rifle", + "quantity": 799, + "timeSeconds": 346.675, + "sulfur": 19975, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "soft", + "caption": "Semi-Automatic Rifle", + "quantity": 798, + "timeSeconds": 346.5, + "sulfur": 19950, + "fuel": null + } + ] + }, + { + "key": "Armored Floor Triangle Frame", + "name": "Armored Floor Triangle Frame", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 12, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 114, + "timeSeconds": 146, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 15, + "timeSeconds": 84, + "sulfur": 21000, + "fuel": 450 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 134, + "timeSeconds": 798, + "sulfur": 26800, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 8, + "timeSeconds": 20.5, + "sulfur": 17600, + "fuel": 480 + }, + { + "toolId": 1840822026, + "side": null, + "caption": "Stuck (right click)", + "quantity": 223, + "timeSeconds": 838.875, + "sulfur": 26760, + "fuel": null + }, + { + "toolId": 143803535, + "side": null, + "caption": "Stuck (right click)", + "quantity": 1986, + "timeSeconds": 4966.75, + "sulfur": 119160, + "fuel": null + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 46, + "timeSeconds": 76.5, + "sulfur": 22080, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 799, + "timeSeconds": 346.675, + "sulfur": 19975, + "fuel": null + } + ] + }, + { + "key": "Armored Foundation", + "name": "Armored Foundation", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": "both", + "caption": null, + "quantity": 12, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "hard", + "caption": null, + "quantity": 114, + "timeSeconds": 146, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "soft", + "caption": null, + "quantity": 111, + "timeSeconds": 144.8, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": "both", + "caption": null, + "quantity": 15, + "timeSeconds": 84, + "sulfur": 21000, + "fuel": 450 + }, + { + "toolId": -1841918730, + "side": "both", + "caption": null, + "quantity": 134, + "timeSeconds": 798, + "sulfur": 26800, + "fuel": null + }, + { + "toolId": 1248356124, + "side": "both", + "caption": null, + "quantity": 8, + "timeSeconds": 20.5, + "sulfur": 17600, + "fuel": 480 + }, + { + "toolId": 1840822026, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 223, + "timeSeconds": 838.875, + "sulfur": 26760, + "fuel": null + }, + { + "toolId": 143803535, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 1986, + "timeSeconds": 4966.75, + "sulfur": 119160, + "fuel": null + }, + { + "toolId": -1878475007, + "side": "both", + "caption": null, + "quantity": 46, + "timeSeconds": 76.5, + "sulfur": 22080, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "hard", + "caption": "Semi-Automatic Rifle", + "quantity": 799, + "timeSeconds": 346.675, + "sulfur": 19975, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "soft", + "caption": "Semi-Automatic Rifle", + "quantity": 798, + "timeSeconds": 346.5, + "sulfur": 19950, + "fuel": null + } + ] + }, + { + "key": "Armored Half Wall", + "name": "Armored Half Wall", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": "both", + "caption": null, + "quantity": 12, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "hard", + "caption": null, + "quantity": 114, + "timeSeconds": 146, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "soft", + "caption": null, + "quantity": 111, + "timeSeconds": 144.8, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": "both", + "caption": null, + "quantity": 15, + "timeSeconds": 84, + "sulfur": 21000, + "fuel": 450 + }, + { + "toolId": -1841918730, + "side": "both", + "caption": null, + "quantity": 134, + "timeSeconds": 798, + "sulfur": 26800, + "fuel": null + }, + { + "toolId": 1248356124, + "side": "both", + "caption": null, + "quantity": 8, + "timeSeconds": 20.5, + "sulfur": 17600, + "fuel": 480 + }, + { + "toolId": 1840822026, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 223, + "timeSeconds": 838.875, + "sulfur": 26760, + "fuel": null + }, + { + "toolId": 143803535, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 1986, + "timeSeconds": 4966.75, + "sulfur": 119160, + "fuel": null + }, + { + "toolId": -1878475007, + "side": "both", + "caption": null, + "quantity": 46, + "timeSeconds": 76.5, + "sulfur": 22080, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "hard", + "caption": "Semi-Automatic Rifle", + "quantity": 799, + "timeSeconds": 346.675, + "sulfur": 19975, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "soft", + "caption": "Semi-Automatic Rifle", + "quantity": 798, + "timeSeconds": 346.5, + "sulfur": 19950, + "fuel": null + } + ] + }, + { + "key": "Armored Low Wall", + "name": "Armored Low Wall", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": "both", + "caption": null, + "quantity": 12, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "hard", + "caption": null, + "quantity": 114, + "timeSeconds": 146, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "soft", + "caption": null, + "quantity": 111, + "timeSeconds": 144.8, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": "both", + "caption": null, + "quantity": 15, + "timeSeconds": 84, + "sulfur": 21000, + "fuel": 450 + }, + { + "toolId": -1841918730, + "side": "both", + "caption": null, + "quantity": 134, + "timeSeconds": 798, + "sulfur": 26800, + "fuel": null + }, + { + "toolId": 1248356124, + "side": "both", + "caption": null, + "quantity": 8, + "timeSeconds": 20.5, + "sulfur": 17600, + "fuel": 480 + }, + { + "toolId": 1840822026, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 223, + "timeSeconds": 838.875, + "sulfur": 26760, + "fuel": null + }, + { + "toolId": 143803535, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 1986, + "timeSeconds": 4966.75, + "sulfur": 119160, + "fuel": null + }, + { + "toolId": -1878475007, + "side": "both", + "caption": null, + "quantity": 46, + "timeSeconds": 76.5, + "sulfur": 22080, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "hard", + "caption": "Semi-Automatic Rifle", + "quantity": 799, + "timeSeconds": 346.675, + "sulfur": 19975, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "soft", + "caption": "Semi-Automatic Rifle", + "quantity": 798, + "timeSeconds": 346.5, + "sulfur": 19950, + "fuel": null + } + ] + }, + { + "key": "Armored Ramp", + "name": "Armored Ramp", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 12, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 111, + "timeSeconds": 144.8, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 15, + "timeSeconds": 84, + "sulfur": 21000, + "fuel": 450 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 134, + "timeSeconds": 798, + "sulfur": 26800, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 8, + "timeSeconds": 20.5, + "sulfur": 17600, + "fuel": 480 + }, + { + "toolId": 1840822026, + "side": null, + "caption": "Stuck (right click)", + "quantity": 223, + "timeSeconds": 838.875, + "sulfur": 26760, + "fuel": null + }, + { + "toolId": 143803535, + "side": null, + "caption": "Stuck (right click)", + "quantity": 1986, + "timeSeconds": 4966.75, + "sulfur": 119160, + "fuel": null + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 46, + "timeSeconds": 76.5, + "sulfur": 22080, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 798, + "timeSeconds": 346.5, + "sulfur": 19950, + "fuel": null + } + ] + }, + { + "key": "Armored Roof", + "name": "Armored Roof", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": "both", + "caption": null, + "quantity": 12, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "hard", + "caption": null, + "quantity": 114, + "timeSeconds": 146, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "soft", + "caption": null, + "quantity": 111, + "timeSeconds": 144.8, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": "both", + "caption": null, + "quantity": 15, + "timeSeconds": 84, + "sulfur": 21000, + "fuel": 450 + }, + { + "toolId": -1841918730, + "side": "both", + "caption": null, + "quantity": 134, + "timeSeconds": 798, + "sulfur": 26800, + "fuel": null + }, + { + "toolId": 1248356124, + "side": "both", + "caption": null, + "quantity": 8, + "timeSeconds": 20.5, + "sulfur": 17600, + "fuel": 480 + }, + { + "toolId": 1840822026, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 223, + "timeSeconds": 838.875, + "sulfur": 26760, + "fuel": null + }, + { + "toolId": 143803535, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 1986, + "timeSeconds": 4966.75, + "sulfur": 119160, + "fuel": null + }, + { + "toolId": -1878475007, + "side": "both", + "caption": null, + "quantity": 46, + "timeSeconds": 76.5, + "sulfur": 22080, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "hard", + "caption": "Semi-Automatic Rifle", + "quantity": 799, + "timeSeconds": 346.675, + "sulfur": 19975, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "soft", + "caption": "Semi-Automatic Rifle", + "quantity": 798, + "timeSeconds": 346.5, + "sulfur": 19950, + "fuel": null + } + ] + }, + { + "key": "Armored Roof Triangle", + "name": "Armored Roof Triangle", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": "both", + "caption": null, + "quantity": 12, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "hard", + "caption": null, + "quantity": 114, + "timeSeconds": 146, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "soft", + "caption": null, + "quantity": 111, + "timeSeconds": 144.8, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": "both", + "caption": null, + "quantity": 15, + "timeSeconds": 84, + "sulfur": 21000, + "fuel": 450 + }, + { + "toolId": -1841918730, + "side": "both", + "caption": null, + "quantity": 134, + "timeSeconds": 798, + "sulfur": 26800, + "fuel": null + }, + { + "toolId": 1248356124, + "side": "both", + "caption": null, + "quantity": 8, + "timeSeconds": 20.5, + "sulfur": 17600, + "fuel": 480 + }, + { + "toolId": 1840822026, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 223, + "timeSeconds": 838.875, + "sulfur": 26760, + "fuel": null + }, + { + "toolId": 143803535, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 1986, + "timeSeconds": 4966.75, + "sulfur": 119160, + "fuel": null + }, + { + "toolId": -1878475007, + "side": "both", + "caption": null, + "quantity": 46, + "timeSeconds": 76.5, + "sulfur": 22080, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "hard", + "caption": "Semi-Automatic Rifle", + "quantity": 799, + "timeSeconds": 346.675, + "sulfur": 19975, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "soft", + "caption": "Semi-Automatic Rifle", + "quantity": 798, + "timeSeconds": 346.5, + "sulfur": 19950, + "fuel": null + } + ] + }, + { + "key": "Armored Stairs L Shape", + "name": "Armored Stairs L Shape", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 12, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 111, + "timeSeconds": 144.8, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 15, + "timeSeconds": 84, + "sulfur": 21000, + "fuel": 450 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 134, + "timeSeconds": 798, + "sulfur": 26800, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 8, + "timeSeconds": 20.5, + "sulfur": 17600, + "fuel": 480 + }, + { + "toolId": 1840822026, + "side": null, + "caption": "Stuck (right click)", + "quantity": 223, + "timeSeconds": 838.875, + "sulfur": 26760, + "fuel": null + }, + { + "toolId": 143803535, + "side": null, + "caption": "Stuck (right click)", + "quantity": 1986, + "timeSeconds": 4966.75, + "sulfur": 119160, + "fuel": null + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 46, + "timeSeconds": 76.5, + "sulfur": 22080, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 798, + "timeSeconds": 346.5, + "sulfur": 19950, + "fuel": null + } + ] + }, + { + "key": "Armored Stairs Spiral", + "name": "Armored Stairs Spiral", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 12, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 111, + "timeSeconds": 144.8, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 15, + "timeSeconds": 84, + "sulfur": 21000, + "fuel": 450 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 134, + "timeSeconds": 798, + "sulfur": 26800, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 8, + "timeSeconds": 20.5, + "sulfur": 17600, + "fuel": 480 + }, + { + "toolId": 1840822026, + "side": null, + "caption": "Stuck (right click)", + "quantity": 223, + "timeSeconds": 838.875, + "sulfur": 26760, + "fuel": null + }, + { + "toolId": 143803535, + "side": null, + "caption": "Stuck (right click)", + "quantity": 1986, + "timeSeconds": 4966.75, + "sulfur": 119160, + "fuel": null + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 46, + "timeSeconds": 76.5, + "sulfur": 22080, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 798, + "timeSeconds": 346.5, + "sulfur": 19950, + "fuel": null + } + ] + }, + { + "key": "Armored Stairs Spiral Triangle", + "name": "Armored Stairs Spiral Triangle", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 12, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 111, + "timeSeconds": 144.8, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 15, + "timeSeconds": 84, + "sulfur": 21000, + "fuel": 450 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 134, + "timeSeconds": 798, + "sulfur": 26800, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 8, + "timeSeconds": 20.5, + "sulfur": 17600, + "fuel": 480 + }, + { + "toolId": 1840822026, + "side": null, + "caption": "Stuck (right click)", + "quantity": 223, + "timeSeconds": 838.875, + "sulfur": 26760, + "fuel": null + }, + { + "toolId": 143803535, + "side": null, + "caption": "Stuck (right click)", + "quantity": 1986, + "timeSeconds": 4966.75, + "sulfur": 119160, + "fuel": null + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 46, + "timeSeconds": 76.5, + "sulfur": 22080, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 798, + "timeSeconds": 346.5, + "sulfur": 19950, + "fuel": null + } + ] + }, + { + "key": "Armored Steps", + "name": "Armored Steps", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 12, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 111, + "timeSeconds": 144.8, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 15, + "timeSeconds": 84, + "sulfur": 21000, + "fuel": 450 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 134, + "timeSeconds": 798, + "sulfur": 26800, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 8, + "timeSeconds": 20.5, + "sulfur": 17600, + "fuel": 480 + }, + { + "toolId": 1840822026, + "side": null, + "caption": "Stuck (right click)", + "quantity": 223, + "timeSeconds": 838.875, + "sulfur": 26760, + "fuel": null + }, + { + "toolId": 143803535, + "side": null, + "caption": "Stuck (right click)", + "quantity": 1986, + "timeSeconds": 4966.75, + "sulfur": 119160, + "fuel": null + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 46, + "timeSeconds": 76.5, + "sulfur": 22080, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 798, + "timeSeconds": 346.5, + "sulfur": 19950, + "fuel": null + } + ] + }, + { + "key": "Armored Triangle Foundation", + "name": "Armored Triangle Foundation", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": "both", + "caption": null, + "quantity": 12, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "hard", + "caption": null, + "quantity": 114, + "timeSeconds": 146, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "soft", + "caption": null, + "quantity": 111, + "timeSeconds": 144.8, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": "both", + "caption": null, + "quantity": 15, + "timeSeconds": 84, + "sulfur": 21000, + "fuel": 450 + }, + { + "toolId": -1841918730, + "side": "both", + "caption": null, + "quantity": 134, + "timeSeconds": 798, + "sulfur": 26800, + "fuel": null + }, + { + "toolId": 1248356124, + "side": "both", + "caption": null, + "quantity": 8, + "timeSeconds": 20.5, + "sulfur": 17600, + "fuel": 480 + }, + { + "toolId": 1840822026, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 223, + "timeSeconds": 838.875, + "sulfur": 26760, + "fuel": null + }, + { + "toolId": 143803535, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 1986, + "timeSeconds": 4966.75, + "sulfur": 119160, + "fuel": null + }, + { + "toolId": -1878475007, + "side": "both", + "caption": null, + "quantity": 46, + "timeSeconds": 76.5, + "sulfur": 22080, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "hard", + "caption": "Semi-Automatic Rifle", + "quantity": 799, + "timeSeconds": 346.675, + "sulfur": 19975, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "soft", + "caption": "Semi-Automatic Rifle", + "quantity": 798, + "timeSeconds": 346.5, + "sulfur": 19950, + "fuel": null + } + ] + }, + { + "key": "Armored U Shaped Stairs", + "name": "Armored U Shaped Stairs", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 12, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 111, + "timeSeconds": 144.8, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 15, + "timeSeconds": 84, + "sulfur": 21000, + "fuel": 450 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 134, + "timeSeconds": 798, + "sulfur": 26800, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 8, + "timeSeconds": 20.5, + "sulfur": 17600, + "fuel": 480 + }, + { + "toolId": 1840822026, + "side": null, + "caption": "Stuck (right click)", + "quantity": 223, + "timeSeconds": 838.875, + "sulfur": 26760, + "fuel": null + }, + { + "toolId": 143803535, + "side": null, + "caption": "Stuck (right click)", + "quantity": 1986, + "timeSeconds": 4966.75, + "sulfur": 119160, + "fuel": null + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 46, + "timeSeconds": 76.5, + "sulfur": 22080, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 798, + "timeSeconds": 346.5, + "sulfur": 19950, + "fuel": null + } + ] + }, + { + "key": "Armored Wall", + "name": "Armored Wall", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": "both", + "caption": null, + "quantity": 12, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "hard", + "caption": null, + "quantity": 114, + "timeSeconds": 146, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "soft", + "caption": null, + "quantity": 111, + "timeSeconds": 144.8, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": "both", + "caption": null, + "quantity": 15, + "timeSeconds": 84, + "sulfur": 21000, + "fuel": 450 + }, + { + "toolId": -1841918730, + "side": "both", + "caption": null, + "quantity": 134, + "timeSeconds": 798, + "sulfur": 26800, + "fuel": null + }, + { + "toolId": 1248356124, + "side": "both", + "caption": null, + "quantity": 8, + "timeSeconds": 20.5, + "sulfur": 17600, + "fuel": 480 + }, + { + "toolId": 1840822026, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 223, + "timeSeconds": 838.875, + "sulfur": 26760, + "fuel": null + }, + { + "toolId": 143803535, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 1986, + "timeSeconds": 4966.75, + "sulfur": 119160, + "fuel": null + }, + { + "toolId": -1878475007, + "side": "both", + "caption": null, + "quantity": 46, + "timeSeconds": 76.5, + "sulfur": 22080, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "hard", + "caption": "Semi-Automatic Rifle", + "quantity": 799, + "timeSeconds": 346.675, + "sulfur": 19975, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "soft", + "caption": "Semi-Automatic Rifle", + "quantity": 798, + "timeSeconds": 346.5, + "sulfur": 19950, + "fuel": null + } + ] + }, + { + "key": "Armored Wall Frame", + "name": "Armored Wall Frame", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 12, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 114, + "timeSeconds": 146, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 15, + "timeSeconds": 84, + "sulfur": 21000, + "fuel": 450 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 134, + "timeSeconds": 798, + "sulfur": 26800, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 8, + "timeSeconds": 20.5, + "sulfur": 17600, + "fuel": 480 + }, + { + "toolId": 1840822026, + "side": null, + "caption": "Stuck (right click)", + "quantity": 223, + "timeSeconds": 838.875, + "sulfur": 26760, + "fuel": null + }, + { + "toolId": 143803535, + "side": null, + "caption": "Stuck (right click)", + "quantity": 1986, + "timeSeconds": 4966.75, + "sulfur": 119160, + "fuel": null + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 46, + "timeSeconds": 76.5, + "sulfur": 22080, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 799, + "timeSeconds": 346.675, + "sulfur": 19975, + "fuel": null + } + ] + }, + { + "key": "Armored Window", + "name": "Armored Window", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": "both", + "caption": null, + "quantity": 12, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "hard", + "caption": null, + "quantity": 114, + "timeSeconds": 146, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "soft", + "caption": null, + "quantity": 111, + "timeSeconds": 144.8, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": "both", + "caption": null, + "quantity": 15, + "timeSeconds": 84, + "sulfur": 21000, + "fuel": 450 + }, + { + "toolId": -1841918730, + "side": "both", + "caption": null, + "quantity": 134, + "timeSeconds": 798, + "sulfur": 26800, + "fuel": null + }, + { + "toolId": 1248356124, + "side": "both", + "caption": null, + "quantity": 8, + "timeSeconds": 20.5, + "sulfur": 17600, + "fuel": 480 + }, + { + "toolId": 1840822026, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 223, + "timeSeconds": 838.875, + "sulfur": 26760, + "fuel": null + }, + { + "toolId": 143803535, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 1986, + "timeSeconds": 4966.75, + "sulfur": 119160, + "fuel": null + }, + { + "toolId": -1878475007, + "side": "both", + "caption": null, + "quantity": 46, + "timeSeconds": 76.5, + "sulfur": 22080, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "hard", + "caption": "Semi-Automatic Rifle", + "quantity": 799, + "timeSeconds": 346.675, + "sulfur": 19975, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "soft", + "caption": "Semi-Automatic Rifle", + "quantity": 798, + "timeSeconds": 346.5, + "sulfur": 19950, + "fuel": null + } + ] + }, + { + "key": "Metal Doorway", + "name": "Metal Doorway", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": "both", + "caption": null, + "quantity": 6, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "hard", + "caption": null, + "quantity": 57, + "timeSeconds": 72.8, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "soft", + "caption": null, + "quantity": 56, + "timeSeconds": 72.4, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": "both", + "caption": null, + "quantity": 8, + "timeSeconds": 42, + "sulfur": 11200, + "fuel": 240 + }, + { + "toolId": -1841918730, + "side": "both", + "caption": null, + "quantity": 67, + "timeSeconds": 396, + "sulfur": 13400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": "both", + "caption": null, + "quantity": 4, + "timeSeconds": 14.5, + "sulfur": 8800, + "fuel": 240 + }, + { + "toolId": 1840822026, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 112, + "timeSeconds": 422.625, + "sulfur": 13440, + "fuel": null + }, + { + "toolId": 143803535, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 993, + "timeSeconds": 2484.25, + "sulfur": 59580, + "fuel": null + }, + { + "toolId": -1878475007, + "side": "both", + "caption": null, + "quantity": 23, + "timeSeconds": 42, + "sulfur": 11040, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "hard", + "caption": "Semi-Automatic Rifle", + "quantity": 400, + "timeSeconds": 171.225, + "sulfur": 10000, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "soft", + "caption": "Semi-Automatic Rifle", + "quantity": 399, + "timeSeconds": 171.05, + "sulfur": 9975, + "fuel": null + } + ] + }, + { + "key": "Metal Floor", + "name": "Metal Floor", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": "both", + "caption": null, + "quantity": 6, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "hard", + "caption": null, + "quantity": 57, + "timeSeconds": 72.8, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "soft", + "caption": null, + "quantity": 56, + "timeSeconds": 72.4, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": "both", + "caption": null, + "quantity": 8, + "timeSeconds": 42, + "sulfur": 11200, + "fuel": 240 + }, + { + "toolId": -1841918730, + "side": "both", + "caption": null, + "quantity": 67, + "timeSeconds": 396, + "sulfur": 13400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": "both", + "caption": null, + "quantity": 4, + "timeSeconds": 14.5, + "sulfur": 8800, + "fuel": 240 + }, + { + "toolId": 1840822026, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 112, + "timeSeconds": 422.625, + "sulfur": 13440, + "fuel": null + }, + { + "toolId": 143803535, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 993, + "timeSeconds": 2484.25, + "sulfur": 59580, + "fuel": null + }, + { + "toolId": -1878475007, + "side": "both", + "caption": null, + "quantity": 23, + "timeSeconds": 42, + "sulfur": 11040, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "hard", + "caption": "Semi-Automatic Rifle", + "quantity": 400, + "timeSeconds": 171.225, + "sulfur": 10000, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "soft", + "caption": "Semi-Automatic Rifle", + "quantity": 399, + "timeSeconds": 171.05, + "sulfur": 9975, + "fuel": null + } + ] + }, + { + "key": "Metal Floor Frame", + "name": "Metal Floor Frame", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 6, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 57, + "timeSeconds": 72.8, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 8, + "timeSeconds": 42, + "sulfur": 11200, + "fuel": 240 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 67, + "timeSeconds": 396, + "sulfur": 13400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 14.5, + "sulfur": 8800, + "fuel": 240 + }, + { + "toolId": 1840822026, + "side": null, + "caption": "Stuck (right click)", + "quantity": 112, + "timeSeconds": 422.625, + "sulfur": 13440, + "fuel": null + }, + { + "toolId": 143803535, + "side": null, + "caption": "Stuck (right click)", + "quantity": 993, + "timeSeconds": 2484.25, + "sulfur": 59580, + "fuel": null + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 23, + "timeSeconds": 42, + "sulfur": 11040, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 400, + "timeSeconds": 171.225, + "sulfur": 10000, + "fuel": null + } + ] + }, + { + "key": "Metal Floor Triangle", + "name": "Metal Floor Triangle", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": "both", + "caption": null, + "quantity": 6, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "hard", + "caption": null, + "quantity": 57, + "timeSeconds": 72.8, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "soft", + "caption": null, + "quantity": 56, + "timeSeconds": 72.4, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": "both", + "caption": null, + "quantity": 8, + "timeSeconds": 42, + "sulfur": 11200, + "fuel": 240 + }, + { + "toolId": -1841918730, + "side": "both", + "caption": null, + "quantity": 67, + "timeSeconds": 396, + "sulfur": 13400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": "both", + "caption": null, + "quantity": 4, + "timeSeconds": 14.5, + "sulfur": 8800, + "fuel": 240 + }, + { + "toolId": 1840822026, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 112, + "timeSeconds": 422.625, + "sulfur": 13440, + "fuel": null + }, + { + "toolId": 143803535, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 993, + "timeSeconds": 2484.25, + "sulfur": 59580, + "fuel": null + }, + { + "toolId": -1878475007, + "side": "both", + "caption": null, + "quantity": 23, + "timeSeconds": 42, + "sulfur": 11040, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "hard", + "caption": "Semi-Automatic Rifle", + "quantity": 413, + "timeSeconds": 177.725, + "sulfur": 10325, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "soft", + "caption": "Semi-Automatic Rifle", + "quantity": 399, + "timeSeconds": 171.05, + "sulfur": 9975, + "fuel": null + } + ] + }, + { + "key": "Metal Floor Triangle Frame", + "name": "Metal Floor Triangle Frame", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 6, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 57, + "timeSeconds": 72.8, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 8, + "timeSeconds": 42, + "sulfur": 11200, + "fuel": 240 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 67, + "timeSeconds": 396, + "sulfur": 13400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 14.5, + "sulfur": 8800, + "fuel": 240 + }, + { + "toolId": 1840822026, + "side": null, + "caption": "Stuck (right click)", + "quantity": 112, + "timeSeconds": 422.625, + "sulfur": 13440, + "fuel": null + }, + { + "toolId": 143803535, + "side": null, + "caption": "Stuck (right click)", + "quantity": 993, + "timeSeconds": 2484.25, + "sulfur": 59580, + "fuel": null + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 23, + "timeSeconds": 42, + "sulfur": 11040, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 400, + "timeSeconds": 171.225, + "sulfur": 10000, + "fuel": null + } + ] + }, + { + "key": "Metal Foundation", + "name": "Metal Foundation", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": "both", + "caption": null, + "quantity": 6, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "hard", + "caption": null, + "quantity": 57, + "timeSeconds": 72.8, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "soft", + "caption": null, + "quantity": 56, + "timeSeconds": 72.4, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": "both", + "caption": null, + "quantity": 8, + "timeSeconds": 42, + "sulfur": 11200, + "fuel": 240 + }, + { + "toolId": -1841918730, + "side": "both", + "caption": null, + "quantity": 67, + "timeSeconds": 396, + "sulfur": 13400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": "both", + "caption": null, + "quantity": 4, + "timeSeconds": 14.5, + "sulfur": 8800, + "fuel": 240 + }, + { + "toolId": 1840822026, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 112, + "timeSeconds": 422.625, + "sulfur": 13440, + "fuel": null + }, + { + "toolId": 143803535, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 993, + "timeSeconds": 2484.25, + "sulfur": 59580, + "fuel": null + }, + { + "toolId": -1878475007, + "side": "both", + "caption": null, + "quantity": 23, + "timeSeconds": 42, + "sulfur": 11040, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "hard", + "caption": "Semi-Automatic Rifle", + "quantity": 461, + "timeSeconds": 198.8, + "sulfur": 11525, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "soft", + "caption": "Semi-Automatic Rifle", + "quantity": 399, + "timeSeconds": 171.05, + "sulfur": 9975, + "fuel": null + } + ] + }, + { + "key": "Metal Half Wall", + "name": "Metal Half Wall", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": "both", + "caption": null, + "quantity": 6, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "hard", + "caption": null, + "quantity": 57, + "timeSeconds": 72.8, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "soft", + "caption": null, + "quantity": 56, + "timeSeconds": 72.4, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": "both", + "caption": null, + "quantity": 8, + "timeSeconds": 42, + "sulfur": 11200, + "fuel": 240 + }, + { + "toolId": -1841918730, + "side": "both", + "caption": null, + "quantity": 67, + "timeSeconds": 396, + "sulfur": 13400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": "both", + "caption": null, + "quantity": 4, + "timeSeconds": 14.5, + "sulfur": 8800, + "fuel": 240 + }, + { + "toolId": 1840822026, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 112, + "timeSeconds": 422.625, + "sulfur": 13440, + "fuel": null + }, + { + "toolId": 143803535, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 993, + "timeSeconds": 2484.25, + "sulfur": 59580, + "fuel": null + }, + { + "toolId": -1878475007, + "side": "both", + "caption": null, + "quantity": 23, + "timeSeconds": 42, + "sulfur": 11040, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "hard", + "caption": "Semi-Automatic Rifle", + "quantity": 400, + "timeSeconds": 171.225, + "sulfur": 10000, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "soft", + "caption": "Semi-Automatic Rifle", + "quantity": 399, + "timeSeconds": 171.05, + "sulfur": 9975, + "fuel": null + } + ] + }, + { + "key": "Metal Low Wall", + "name": "Metal Low Wall", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": "both", + "caption": null, + "quantity": 6, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "hard", + "caption": null, + "quantity": 57, + "timeSeconds": 72.8, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "soft", + "caption": null, + "quantity": 56, + "timeSeconds": 72.4, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": "both", + "caption": null, + "quantity": 8, + "timeSeconds": 42, + "sulfur": 11200, + "fuel": 240 + }, + { + "toolId": -1841918730, + "side": "both", + "caption": null, + "quantity": 67, + "timeSeconds": 396, + "sulfur": 13400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": "both", + "caption": null, + "quantity": 4, + "timeSeconds": 14.5, + "sulfur": 8800, + "fuel": 240 + }, + { + "toolId": 1840822026, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 112, + "timeSeconds": 422.625, + "sulfur": 13440, + "fuel": null + }, + { + "toolId": 143803535, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 993, + "timeSeconds": 2484.25, + "sulfur": 59580, + "fuel": null + }, + { + "toolId": -1878475007, + "side": "both", + "caption": null, + "quantity": 23, + "timeSeconds": 42, + "sulfur": 11040, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "hard", + "caption": "Semi-Automatic Rifle", + "quantity": 400, + "timeSeconds": 171.225, + "sulfur": 10000, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "soft", + "caption": "Semi-Automatic Rifle", + "quantity": 399, + "timeSeconds": 171.05, + "sulfur": 9975, + "fuel": null + } + ] + }, + { + "key": "Metal Ramp", + "name": "Metal Ramp", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 6, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 56, + "timeSeconds": 72.4, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 8, + "timeSeconds": 42, + "sulfur": 11200, + "fuel": 240 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 67, + "timeSeconds": 396, + "sulfur": 13400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 14.5, + "sulfur": 8800, + "fuel": 240 + }, + { + "toolId": 1840822026, + "side": null, + "caption": "Stuck (right click)", + "quantity": 112, + "timeSeconds": 422.625, + "sulfur": 13440, + "fuel": null + }, + { + "toolId": 143803535, + "side": null, + "caption": "Stuck (right click)", + "quantity": 993, + "timeSeconds": 2484.25, + "sulfur": 59580, + "fuel": null + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 23, + "timeSeconds": 42, + "sulfur": 11040, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 399, + "timeSeconds": 171.05, + "sulfur": 9975, + "fuel": null + } + ] + }, + { + "key": "Metal Roof", + "name": "Metal Roof", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": "both", + "caption": null, + "quantity": 6, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "hard", + "caption": null, + "quantity": 57, + "timeSeconds": 72.8, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "soft", + "caption": null, + "quantity": 56, + "timeSeconds": 72.4, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": "both", + "caption": null, + "quantity": 8, + "timeSeconds": 42, + "sulfur": 11200, + "fuel": 240 + }, + { + "toolId": -1841918730, + "side": "both", + "caption": null, + "quantity": 67, + "timeSeconds": 396, + "sulfur": 13400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": "both", + "caption": null, + "quantity": 4, + "timeSeconds": 14.5, + "sulfur": 8800, + "fuel": 240 + }, + { + "toolId": 1840822026, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 112, + "timeSeconds": 422.625, + "sulfur": 13440, + "fuel": null + }, + { + "toolId": 143803535, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 993, + "timeSeconds": 2484.25, + "sulfur": 59580, + "fuel": null + }, + { + "toolId": -1878475007, + "side": "both", + "caption": null, + "quantity": 23, + "timeSeconds": 42, + "sulfur": 11040, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "hard", + "caption": "Semi-Automatic Rifle", + "quantity": 400, + "timeSeconds": 171.225, + "sulfur": 10000, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "soft", + "caption": "Semi-Automatic Rifle", + "quantity": 399, + "timeSeconds": 171.05, + "sulfur": 9975, + "fuel": null + } + ] + }, + { + "key": "Metal Roof Triangle", + "name": "Metal Roof Triangle", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": "both", + "caption": null, + "quantity": 6, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "hard", + "caption": null, + "quantity": 57, + "timeSeconds": 72.8, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "soft", + "caption": null, + "quantity": 56, + "timeSeconds": 72.4, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": "both", + "caption": null, + "quantity": 8, + "timeSeconds": 42, + "sulfur": 11200, + "fuel": 240 + }, + { + "toolId": -1841918730, + "side": "both", + "caption": null, + "quantity": 67, + "timeSeconds": 396, + "sulfur": 13400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": "both", + "caption": null, + "quantity": 4, + "timeSeconds": 14.5, + "sulfur": 8800, + "fuel": 240 + }, + { + "toolId": 1840822026, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 112, + "timeSeconds": 422.625, + "sulfur": 13440, + "fuel": null + }, + { + "toolId": 143803535, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 993, + "timeSeconds": 2484.25, + "sulfur": 59580, + "fuel": null + }, + { + "toolId": -1878475007, + "side": "both", + "caption": null, + "quantity": 23, + "timeSeconds": 42, + "sulfur": 11040, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "hard", + "caption": "Semi-Automatic Rifle", + "quantity": 400, + "timeSeconds": 171.225, + "sulfur": 10000, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "soft", + "caption": "Semi-Automatic Rifle", + "quantity": 399, + "timeSeconds": 171.05, + "sulfur": 9975, + "fuel": null + } + ] + }, + { + "key": "Metal Stairs L Shape", + "name": "Metal Stairs L Shape", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 6, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 56, + "timeSeconds": 72.4, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 8, + "timeSeconds": 42, + "sulfur": 11200, + "fuel": 240 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 67, + "timeSeconds": 396, + "sulfur": 13400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 14.5, + "sulfur": 8800, + "fuel": 240 + }, + { + "toolId": 1840822026, + "side": null, + "caption": "Stuck (right click)", + "quantity": 112, + "timeSeconds": 422.625, + "sulfur": 13440, + "fuel": null + }, + { + "toolId": 143803535, + "side": null, + "caption": "Stuck (right click)", + "quantity": 993, + "timeSeconds": 2484.25, + "sulfur": 59580, + "fuel": null + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 23, + "timeSeconds": 42, + "sulfur": 11040, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 399, + "timeSeconds": 171.05, + "sulfur": 9975, + "fuel": null + } + ] + }, + { + "key": "Metal Stairs Spiral", + "name": "Metal Stairs Spiral", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 6, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 56, + "timeSeconds": 72.4, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 8, + "timeSeconds": 42, + "sulfur": 11200, + "fuel": 240 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 67, + "timeSeconds": 396, + "sulfur": 13400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 14.5, + "sulfur": 8800, + "fuel": 240 + }, + { + "toolId": 1840822026, + "side": null, + "caption": "Stuck (right click)", + "quantity": 112, + "timeSeconds": 422.625, + "sulfur": 13440, + "fuel": null + }, + { + "toolId": 143803535, + "side": null, + "caption": "Stuck (right click)", + "quantity": 993, + "timeSeconds": 2484.25, + "sulfur": 59580, + "fuel": null + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 23, + "timeSeconds": 42, + "sulfur": 11040, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 399, + "timeSeconds": 171.05, + "sulfur": 9975, + "fuel": null + } + ] + }, + { + "key": "Metal Stairs Spiral Triangle", + "name": "Metal Stairs Spiral Triangle", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 6, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 56, + "timeSeconds": 72.4, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 8, + "timeSeconds": 42, + "sulfur": 11200, + "fuel": 240 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 67, + "timeSeconds": 396, + "sulfur": 13400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 14.5, + "sulfur": 8800, + "fuel": 240 + }, + { + "toolId": 1840822026, + "side": null, + "caption": "Stuck (right click)", + "quantity": 112, + "timeSeconds": 422.625, + "sulfur": 13440, + "fuel": null + }, + { + "toolId": 143803535, + "side": null, + "caption": "Stuck (right click)", + "quantity": 993, + "timeSeconds": 2484.25, + "sulfur": 59580, + "fuel": null + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 23, + "timeSeconds": 42, + "sulfur": 11040, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 399, + "timeSeconds": 171.05, + "sulfur": 9975, + "fuel": null + } + ] + }, + { + "key": "Metal Steps", + "name": "Metal Steps", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 6, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 56, + "timeSeconds": 72.4, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 8, + "timeSeconds": 42, + "sulfur": 11200, + "fuel": 240 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 67, + "timeSeconds": 396, + "sulfur": 13400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 14.5, + "sulfur": 8800, + "fuel": 240 + }, + { + "toolId": 1840822026, + "side": null, + "caption": "Stuck (right click)", + "quantity": 112, + "timeSeconds": 422.625, + "sulfur": 13440, + "fuel": null + }, + { + "toolId": 143803535, + "side": null, + "caption": "Stuck (right click)", + "quantity": 993, + "timeSeconds": 2484.25, + "sulfur": 59580, + "fuel": null + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 23, + "timeSeconds": 42, + "sulfur": 11040, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 399, + "timeSeconds": 171.05, + "sulfur": 9975, + "fuel": null + } + ] + }, + { + "key": "Metal Triangle Foundation", + "name": "Metal Triangle Foundation", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": "both", + "caption": null, + "quantity": 6, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "hard", + "caption": null, + "quantity": 57, + "timeSeconds": 72.8, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "soft", + "caption": null, + "quantity": 56, + "timeSeconds": 72.4, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": "both", + "caption": null, + "quantity": 8, + "timeSeconds": 42, + "sulfur": 11200, + "fuel": 240 + }, + { + "toolId": -1841918730, + "side": "both", + "caption": null, + "quantity": 67, + "timeSeconds": 396, + "sulfur": 13400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": "both", + "caption": null, + "quantity": 4, + "timeSeconds": 14.5, + "sulfur": 8800, + "fuel": 240 + }, + { + "toolId": 1840822026, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 112, + "timeSeconds": 422.625, + "sulfur": 13440, + "fuel": null + }, + { + "toolId": 143803535, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 993, + "timeSeconds": 2484.25, + "sulfur": 59580, + "fuel": null + }, + { + "toolId": -1878475007, + "side": "both", + "caption": null, + "quantity": 23, + "timeSeconds": 42, + "sulfur": 11040, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "hard", + "caption": "Semi-Automatic Rifle", + "quantity": 400, + "timeSeconds": 171.225, + "sulfur": 10000, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "soft", + "caption": "Semi-Automatic Rifle", + "quantity": 399, + "timeSeconds": 171.05, + "sulfur": 9975, + "fuel": null + } + ] + }, + { + "key": "Metal U Shaped Stairs", + "name": "Metal U Shaped Stairs", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 6, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 56, + "timeSeconds": 72.4, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 8, + "timeSeconds": 42, + "sulfur": 11200, + "fuel": 240 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 67, + "timeSeconds": 396, + "sulfur": 13400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 14.5, + "sulfur": 8800, + "fuel": 240 + }, + { + "toolId": 1840822026, + "side": null, + "caption": "Stuck (right click)", + "quantity": 112, + "timeSeconds": 422.625, + "sulfur": 13440, + "fuel": null + }, + { + "toolId": 143803535, + "side": null, + "caption": "Stuck (right click)", + "quantity": 993, + "timeSeconds": 2484.25, + "sulfur": 59580, + "fuel": null + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 23, + "timeSeconds": 42, + "sulfur": 11040, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 399, + "timeSeconds": 171.05, + "sulfur": 9975, + "fuel": null + } + ] + }, + { + "key": "Metal Wall", + "name": "Metal Wall", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": "both", + "caption": null, + "quantity": 6, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "hard", + "caption": null, + "quantity": 57, + "timeSeconds": 72.8, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "soft", + "caption": null, + "quantity": 56, + "timeSeconds": 72.4, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": "both", + "caption": null, + "quantity": 8, + "timeSeconds": 42, + "sulfur": 11200, + "fuel": 240 + }, + { + "toolId": -1841918730, + "side": "both", + "caption": null, + "quantity": 67, + "timeSeconds": 396, + "sulfur": 13400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": "both", + "caption": null, + "quantity": 4, + "timeSeconds": 14.5, + "sulfur": 8800, + "fuel": 240 + }, + { + "toolId": 1840822026, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 112, + "timeSeconds": 422.625, + "sulfur": 13440, + "fuel": null + }, + { + "toolId": 143803535, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 993, + "timeSeconds": 2484.25, + "sulfur": 59580, + "fuel": null + }, + { + "toolId": -1878475007, + "side": "both", + "caption": null, + "quantity": 23, + "timeSeconds": 42, + "sulfur": 11040, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "hard", + "caption": "Semi-Automatic Rifle", + "quantity": 400, + "timeSeconds": 171.225, + "sulfur": 10000, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "soft", + "caption": "Semi-Automatic Rifle", + "quantity": 399, + "timeSeconds": 171.05, + "sulfur": 9975, + "fuel": null + } + ] + }, + { + "key": "Metal Wall Frame", + "name": "Metal Wall Frame", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 6, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 57, + "timeSeconds": 72.8, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 8, + "timeSeconds": 42, + "sulfur": 11200, + "fuel": 240 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 67, + "timeSeconds": 396, + "sulfur": 13400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 14.5, + "sulfur": 8800, + "fuel": 240 + }, + { + "toolId": 1840822026, + "side": null, + "caption": "Stuck (right click)", + "quantity": 112, + "timeSeconds": 422.625, + "sulfur": 13440, + "fuel": null + }, + { + "toolId": 143803535, + "side": null, + "caption": "Stuck (right click)", + "quantity": 993, + "timeSeconds": 2484.25, + "sulfur": 59580, + "fuel": null + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 23, + "timeSeconds": 42, + "sulfur": 11040, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 400, + "timeSeconds": 171.225, + "sulfur": 10000, + "fuel": null + } + ] + }, + { + "key": "Metal Window", + "name": "Metal Window", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": "both", + "caption": null, + "quantity": 6, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "hard", + "caption": null, + "quantity": 57, + "timeSeconds": 72.8, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "soft", + "caption": null, + "quantity": 56, + "timeSeconds": 72.4, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": "both", + "caption": null, + "quantity": 8, + "timeSeconds": 42, + "sulfur": 11200, + "fuel": 240 + }, + { + "toolId": -1841918730, + "side": "both", + "caption": null, + "quantity": 67, + "timeSeconds": 396, + "sulfur": 13400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": "both", + "caption": null, + "quantity": 4, + "timeSeconds": 14.5, + "sulfur": 8800, + "fuel": 240 + }, + { + "toolId": 1840822026, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 112, + "timeSeconds": 422.625, + "sulfur": 13440, + "fuel": null + }, + { + "toolId": 143803535, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 993, + "timeSeconds": 2484.25, + "sulfur": 59580, + "fuel": null + }, + { + "toolId": -1878475007, + "side": "both", + "caption": null, + "quantity": 23, + "timeSeconds": 42, + "sulfur": 11040, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "hard", + "caption": "Semi-Automatic Rifle", + "quantity": 400, + "timeSeconds": 171.225, + "sulfur": 10000, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "soft", + "caption": "Semi-Automatic Rifle", + "quantity": 399, + "timeSeconds": 171.05, + "sulfur": 9975, + "fuel": null + } + ] + }, + { + "key": "Stone Doorway", + "name": "Stone Doorway", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": "both", + "caption": null, + "quantity": 3, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "hard", + "caption": null, + "quantity": 29, + "timeSeconds": 33.6, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "soft", + "caption": null, + "quantity": 27, + "timeSeconds": 32.8, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": "both", + "caption": null, + "quantity": 4, + "timeSeconds": 18, + "sulfur": 5600, + "fuel": 120 + }, + { + "toolId": -1841918730, + "side": "hard", + "caption": null, + "quantity": 32, + "timeSeconds": 186, + "sulfur": 6400, + "fuel": null + }, + { + "toolId": -1841918730, + "side": "soft", + "caption": null, + "quantity": 31, + "timeSeconds": null, + "sulfur": 6200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": "both", + "caption": null, + "quantity": 2, + "timeSeconds": 11.5, + "sulfur": 4400, + "fuel": 120 + }, + { + "toolId": 1840822026, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 46, + "timeSeconds": 175.125, + "sulfur": 5520, + "fuel": null + }, + { + "toolId": 143803535, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 182, + "timeSeconds": 456.75, + "sulfur": 10920, + "fuel": null + }, + { + "toolId": -1878475007, + "side": "both", + "caption": null, + "quantity": 10, + "timeSeconds": 22.5, + "sulfur": 4800, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "hard", + "caption": "Semi-Automatic Rifle", + "quantity": 185, + "timeSeconds": 78.675, + "sulfur": 4625, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "soft", + "caption": "Semi-Automatic Rifle", + "quantity": 173, + "timeSeconds": 72.35, + "sulfur": 4325, + "fuel": null + } + ] + }, + { + "key": "Stone Floor", + "name": "Stone Floor", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": "both", + "caption": null, + "quantity": 3, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "hard", + "caption": null, + "quantity": 29, + "timeSeconds": 33.6, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "soft", + "caption": null, + "quantity": 27, + "timeSeconds": 32.8, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": "both", + "caption": null, + "quantity": 4, + "timeSeconds": 18, + "sulfur": 5600, + "fuel": 120 + }, + { + "toolId": -1841918730, + "side": "hard", + "caption": null, + "quantity": 32, + "timeSeconds": 186, + "sulfur": 6400, + "fuel": null + }, + { + "toolId": -1841918730, + "side": "soft", + "caption": null, + "quantity": 31, + "timeSeconds": null, + "sulfur": 6200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": "both", + "caption": null, + "quantity": 2, + "timeSeconds": 11.5, + "sulfur": 4400, + "fuel": 120 + }, + { + "toolId": 1840822026, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 46, + "timeSeconds": 175.125, + "sulfur": 5520, + "fuel": null + }, + { + "toolId": 143803535, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 182, + "timeSeconds": 456.75, + "sulfur": 10920, + "fuel": null + }, + { + "toolId": -1878475007, + "side": "both", + "caption": null, + "quantity": 10, + "timeSeconds": 22.5, + "sulfur": 4800, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "hard", + "caption": "Semi-Automatic Rifle", + "quantity": 185, + "timeSeconds": 78.675, + "sulfur": 4625, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "soft", + "caption": "Semi-Automatic Rifle", + "quantity": 173, + "timeSeconds": 72.35, + "sulfur": 4325, + "fuel": null + } + ] + }, + { + "key": "Stone Floor Frame", + "name": "Stone Floor Frame", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 29, + "timeSeconds": 33.6, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 18, + "sulfur": 5600, + "fuel": 120 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 32, + "timeSeconds": 186, + "sulfur": 6400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 11.5, + "sulfur": 4400, + "fuel": 120 + }, + { + "toolId": 1840822026, + "side": null, + "caption": "Stuck (right click)", + "quantity": 46, + "timeSeconds": 175.125, + "sulfur": 5520, + "fuel": null + }, + { + "toolId": 143803535, + "side": null, + "caption": "Stuck (right click)", + "quantity": 182, + "timeSeconds": 456.75, + "sulfur": 10920, + "fuel": null + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 10, + "timeSeconds": 22.5, + "sulfur": 4800, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 185, + "timeSeconds": 78.675, + "sulfur": 4625, + "fuel": null + } + ] + }, + { + "key": "Stone Floor Triangle", + "name": "Stone Floor Triangle", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": "both", + "caption": null, + "quantity": 3, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "hard", + "caption": null, + "quantity": 29, + "timeSeconds": 33.6, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "soft", + "caption": null, + "quantity": 27, + "timeSeconds": 32.8, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": "both", + "caption": null, + "quantity": 4, + "timeSeconds": 18, + "sulfur": 5600, + "fuel": 120 + }, + { + "toolId": -1841918730, + "side": "hard", + "caption": null, + "quantity": 32, + "timeSeconds": 186, + "sulfur": 6400, + "fuel": null + }, + { + "toolId": -1841918730, + "side": "soft", + "caption": null, + "quantity": 31, + "timeSeconds": null, + "sulfur": 6200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": "both", + "caption": null, + "quantity": 2, + "timeSeconds": 11.5, + "sulfur": 4400, + "fuel": 120 + }, + { + "toolId": 1840822026, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 46, + "timeSeconds": 175.125, + "sulfur": 5520, + "fuel": null + }, + { + "toolId": 143803535, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 182, + "timeSeconds": 456.75, + "sulfur": 10920, + "fuel": null + }, + { + "toolId": -1878475007, + "side": "both", + "caption": null, + "quantity": 10, + "timeSeconds": 22.5, + "sulfur": 4800, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "hard", + "caption": "Semi-Automatic Rifle", + "quantity": 185, + "timeSeconds": 78.675, + "sulfur": 4625, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "soft", + "caption": "Semi-Automatic Rifle", + "quantity": 173, + "timeSeconds": 72.35, + "sulfur": 4325, + "fuel": null + } + ] + }, + { + "key": "Stone Floor Triangle Frame", + "name": "Stone Floor Triangle Frame", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 29, + "timeSeconds": 33.6, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 18, + "sulfur": 5600, + "fuel": 120 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 32, + "timeSeconds": 186, + "sulfur": 6400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 11.5, + "sulfur": 4400, + "fuel": 120 + }, + { + "toolId": 1840822026, + "side": null, + "caption": "Stuck (right click)", + "quantity": 46, + "timeSeconds": 175.125, + "sulfur": 5520, + "fuel": null + }, + { + "toolId": 143803535, + "side": null, + "caption": "Stuck (right click)", + "quantity": 182, + "timeSeconds": 456.75, + "sulfur": 10920, + "fuel": null + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 10, + "timeSeconds": 22.5, + "sulfur": 4800, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 185, + "timeSeconds": 78.675, + "sulfur": 4625, + "fuel": null + } + ] + }, + { + "key": "Stone Foundation", + "name": "Stone Foundation", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": "both", + "caption": null, + "quantity": 3, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "hard", + "caption": null, + "quantity": 29, + "timeSeconds": 33.6, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "soft", + "caption": null, + "quantity": 27, + "timeSeconds": 32.8, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": "both", + "caption": null, + "quantity": 4, + "timeSeconds": 18, + "sulfur": 5600, + "fuel": 120 + }, + { + "toolId": -1841918730, + "side": "hard", + "caption": null, + "quantity": 32, + "timeSeconds": 186, + "sulfur": 6400, + "fuel": null + }, + { + "toolId": -1841918730, + "side": "soft", + "caption": null, + "quantity": 31, + "timeSeconds": null, + "sulfur": 6200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": "both", + "caption": null, + "quantity": 2, + "timeSeconds": 11.5, + "sulfur": 4400, + "fuel": 120 + }, + { + "toolId": 1840822026, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 46, + "timeSeconds": 175.125, + "sulfur": 5520, + "fuel": null + }, + { + "toolId": 143803535, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 182, + "timeSeconds": 456.75, + "sulfur": 10920, + "fuel": null + }, + { + "toolId": -1878475007, + "side": "both", + "caption": null, + "quantity": 10, + "timeSeconds": 22.5, + "sulfur": 4800, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "hard", + "caption": "Semi-Automatic Rifle", + "quantity": 185, + "timeSeconds": 78.675, + "sulfur": 4625, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "soft", + "caption": "Semi-Automatic Rifle", + "quantity": 173, + "timeSeconds": 72.35, + "sulfur": 4325, + "fuel": null + } + ] + }, + { + "key": "Stone Half Wall", + "name": "Stone Half Wall", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": "both", + "caption": null, + "quantity": 3, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "hard", + "caption": null, + "quantity": 29, + "timeSeconds": 33.6, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "soft", + "caption": null, + "quantity": 27, + "timeSeconds": 32.8, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": "both", + "caption": null, + "quantity": 4, + "timeSeconds": 18, + "sulfur": 5600, + "fuel": 120 + }, + { + "toolId": -1841918730, + "side": "hard", + "caption": null, + "quantity": 32, + "timeSeconds": 186, + "sulfur": 6400, + "fuel": null + }, + { + "toolId": -1841918730, + "side": "soft", + "caption": null, + "quantity": 31, + "timeSeconds": null, + "sulfur": 6200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": "both", + "caption": null, + "quantity": 2, + "timeSeconds": 11.5, + "sulfur": 4400, + "fuel": 120 + }, + { + "toolId": 1840822026, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 46, + "timeSeconds": 175.125, + "sulfur": 5520, + "fuel": null + }, + { + "toolId": 143803535, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 182, + "timeSeconds": 456.75, + "sulfur": 10920, + "fuel": null + }, + { + "toolId": -1878475007, + "side": "both", + "caption": null, + "quantity": 10, + "timeSeconds": 22.5, + "sulfur": 4800, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "hard", + "caption": "Semi-Automatic Rifle", + "quantity": 185, + "timeSeconds": 78.675, + "sulfur": 4625, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "soft", + "caption": "Semi-Automatic Rifle", + "quantity": 173, + "timeSeconds": 72.35, + "sulfur": 4325, + "fuel": null + } + ] + }, + { + "key": "Stone Low Wall", + "name": "Stone Low Wall", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": "both", + "caption": null, + "quantity": 3, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "hard", + "caption": null, + "quantity": 29, + "timeSeconds": 33.6, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "soft", + "caption": null, + "quantity": 27, + "timeSeconds": 32.8, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": "both", + "caption": null, + "quantity": 4, + "timeSeconds": 18, + "sulfur": 5600, + "fuel": 120 + }, + { + "toolId": -1841918730, + "side": "hard", + "caption": null, + "quantity": 32, + "timeSeconds": 186, + "sulfur": 6400, + "fuel": null + }, + { + "toolId": -1841918730, + "side": "soft", + "caption": null, + "quantity": 31, + "timeSeconds": null, + "sulfur": 6200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": "both", + "caption": null, + "quantity": 2, + "timeSeconds": 11.5, + "sulfur": 4400, + "fuel": 120 + }, + { + "toolId": 1840822026, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 46, + "timeSeconds": 175.125, + "sulfur": 5520, + "fuel": null + }, + { + "toolId": 143803535, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 182, + "timeSeconds": 456.75, + "sulfur": 10920, + "fuel": null + }, + { + "toolId": -1878475007, + "side": "both", + "caption": null, + "quantity": 10, + "timeSeconds": 22.5, + "sulfur": 4800, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "hard", + "caption": "Semi-Automatic Rifle", + "quantity": 185, + "timeSeconds": 78.675, + "sulfur": 4625, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "soft", + "caption": "Semi-Automatic Rifle", + "quantity": 173, + "timeSeconds": 72.35, + "sulfur": 4325, + "fuel": null + } + ] + }, + { + "key": "Stone Ramp", + "name": "Stone Ramp", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 27, + "timeSeconds": 32.8, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 18, + "sulfur": 5600, + "fuel": 120 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 31, + "timeSeconds": null, + "sulfur": 6200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 11.5, + "sulfur": 4400, + "fuel": 120 + }, + { + "toolId": 1840822026, + "side": null, + "caption": "Stuck (right click)", + "quantity": 46, + "timeSeconds": 175.125, + "sulfur": 5520, + "fuel": null + }, + { + "toolId": 143803535, + "side": null, + "caption": "Stuck (right click)", + "quantity": 182, + "timeSeconds": 456.75, + "sulfur": 10920, + "fuel": null + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 10, + "timeSeconds": 22.5, + "sulfur": 4800, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 173, + "timeSeconds": 72.35, + "sulfur": 4325, + "fuel": null + } + ] + }, + { + "key": "Stone Roof", + "name": "Stone Roof", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": "both", + "caption": null, + "quantity": 3, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "hard", + "caption": null, + "quantity": 29, + "timeSeconds": 33.6, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "soft", + "caption": null, + "quantity": 27, + "timeSeconds": 32.8, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": "both", + "caption": null, + "quantity": 4, + "timeSeconds": 18, + "sulfur": 5600, + "fuel": 120 + }, + { + "toolId": -1841918730, + "side": "hard", + "caption": null, + "quantity": 32, + "timeSeconds": 186, + "sulfur": 6400, + "fuel": null + }, + { + "toolId": -1841918730, + "side": "soft", + "caption": null, + "quantity": 31, + "timeSeconds": null, + "sulfur": 6200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": "both", + "caption": null, + "quantity": 2, + "timeSeconds": 11.5, + "sulfur": 4400, + "fuel": 120 + }, + { + "toolId": 1840822026, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 46, + "timeSeconds": 175.125, + "sulfur": 5520, + "fuel": null + }, + { + "toolId": 143803535, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 182, + "timeSeconds": 456.75, + "sulfur": 10920, + "fuel": null + }, + { + "toolId": -1878475007, + "side": "both", + "caption": null, + "quantity": 10, + "timeSeconds": 22.5, + "sulfur": 4800, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "hard", + "caption": "Semi-Automatic Rifle", + "quantity": 185, + "timeSeconds": 78.675, + "sulfur": 4625, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "soft", + "caption": "Semi-Automatic Rifle", + "quantity": 173, + "timeSeconds": 72.35, + "sulfur": 4325, + "fuel": null + } + ] + }, + { + "key": "Stone Roof Triangle", + "name": "Stone Roof Triangle", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": "both", + "caption": null, + "quantity": 3, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "hard", + "caption": null, + "quantity": 29, + "timeSeconds": 33.6, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "soft", + "caption": null, + "quantity": 27, + "timeSeconds": 32.8, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": "both", + "caption": null, + "quantity": 4, + "timeSeconds": 18, + "sulfur": 5600, + "fuel": 120 + }, + { + "toolId": -1841918730, + "side": "hard", + "caption": null, + "quantity": 32, + "timeSeconds": 186, + "sulfur": 6400, + "fuel": null + }, + { + "toolId": -1841918730, + "side": "soft", + "caption": null, + "quantity": 31, + "timeSeconds": null, + "sulfur": 6200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": "both", + "caption": null, + "quantity": 2, + "timeSeconds": 11.5, + "sulfur": 4400, + "fuel": 120 + }, + { + "toolId": 1840822026, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 46, + "timeSeconds": 175.125, + "sulfur": 5520, + "fuel": null + }, + { + "toolId": 143803535, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 182, + "timeSeconds": 456.75, + "sulfur": 10920, + "fuel": null + }, + { + "toolId": -1878475007, + "side": "both", + "caption": null, + "quantity": 10, + "timeSeconds": 22.5, + "sulfur": 4800, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "hard", + "caption": "Semi-Automatic Rifle", + "quantity": 185, + "timeSeconds": 78.675, + "sulfur": 4625, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "soft", + "caption": "Semi-Automatic Rifle", + "quantity": 173, + "timeSeconds": 72.35, + "sulfur": 4325, + "fuel": null + } + ] + }, + { + "key": "Stone Stairs L Shape", + "name": "Stone Stairs L Shape", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 27, + "timeSeconds": 32.8, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 18, + "sulfur": 5600, + "fuel": 120 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 31, + "timeSeconds": null, + "sulfur": 6200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 11.5, + "sulfur": 4400, + "fuel": 120 + }, + { + "toolId": 1840822026, + "side": null, + "caption": "Stuck (right click)", + "quantity": 46, + "timeSeconds": 175.125, + "sulfur": 5520, + "fuel": null + }, + { + "toolId": 143803535, + "side": null, + "caption": "Stuck (right click)", + "quantity": 182, + "timeSeconds": 456.75, + "sulfur": 10920, + "fuel": null + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 10, + "timeSeconds": 22.5, + "sulfur": 4800, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 173, + "timeSeconds": 72.35, + "sulfur": 4325, + "fuel": null + } + ] + }, + { + "key": "Stone Stairs Spiral", + "name": "Stone Stairs Spiral", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 27, + "timeSeconds": 32.8, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 18, + "sulfur": 5600, + "fuel": 120 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 31, + "timeSeconds": null, + "sulfur": 6200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 11.5, + "sulfur": 4400, + "fuel": 120 + }, + { + "toolId": 1840822026, + "side": null, + "caption": "Stuck (right click)", + "quantity": 46, + "timeSeconds": 175.125, + "sulfur": 5520, + "fuel": null + }, + { + "toolId": 143803535, + "side": null, + "caption": "Stuck (right click)", + "quantity": 182, + "timeSeconds": 456.75, + "sulfur": 10920, + "fuel": null + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 10, + "timeSeconds": 22.5, + "sulfur": 4800, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 173, + "timeSeconds": 72.35, + "sulfur": 4325, + "fuel": null + } + ] + }, + { + "key": "Stone Stairs Spiral Triangle", + "name": "Stone Stairs Spiral Triangle", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 27, + "timeSeconds": 32.8, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 18, + "sulfur": 5600, + "fuel": 120 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 31, + "timeSeconds": null, + "sulfur": 6200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 11.5, + "sulfur": 4400, + "fuel": 120 + }, + { + "toolId": 1840822026, + "side": null, + "caption": "Stuck (right click)", + "quantity": 46, + "timeSeconds": 175.125, + "sulfur": 5520, + "fuel": null + }, + { + "toolId": 143803535, + "side": null, + "caption": "Stuck (right click)", + "quantity": 182, + "timeSeconds": 456.75, + "sulfur": 10920, + "fuel": null + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 10, + "timeSeconds": 22.5, + "sulfur": 4800, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 173, + "timeSeconds": 72.35, + "sulfur": 4325, + "fuel": null + } + ] + }, + { + "key": "Stone Steps", + "name": "Stone Steps", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 27, + "timeSeconds": 32.8, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 18, + "sulfur": 5600, + "fuel": 120 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 31, + "timeSeconds": null, + "sulfur": 6200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 11.5, + "sulfur": 4400, + "fuel": 120 + }, + { + "toolId": 1840822026, + "side": null, + "caption": "Stuck (right click)", + "quantity": 46, + "timeSeconds": 175.125, + "sulfur": 5520, + "fuel": null + }, + { + "toolId": 143803535, + "side": null, + "caption": "Stuck (right click)", + "quantity": 182, + "timeSeconds": 456.75, + "sulfur": 10920, + "fuel": null + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 10, + "timeSeconds": 22.5, + "sulfur": 4800, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 173, + "timeSeconds": 72.35, + "sulfur": 4325, + "fuel": null + } + ] + }, + { + "key": "Stone Triangle Foundation", + "name": "Stone Triangle Foundation", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": "both", + "caption": null, + "quantity": 3, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "hard", + "caption": null, + "quantity": 29, + "timeSeconds": 33.6, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "soft", + "caption": null, + "quantity": 27, + "timeSeconds": 32.8, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": "both", + "caption": null, + "quantity": 4, + "timeSeconds": 18, + "sulfur": 5600, + "fuel": 120 + }, + { + "toolId": -1841918730, + "side": "hard", + "caption": null, + "quantity": 32, + "timeSeconds": 186, + "sulfur": 6400, + "fuel": null + }, + { + "toolId": -1841918730, + "side": "soft", + "caption": null, + "quantity": 31, + "timeSeconds": null, + "sulfur": 6200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": "both", + "caption": null, + "quantity": 2, + "timeSeconds": 11.5, + "sulfur": 4400, + "fuel": 120 + }, + { + "toolId": 1840822026, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 46, + "timeSeconds": 175.125, + "sulfur": 5520, + "fuel": null + }, + { + "toolId": 143803535, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 182, + "timeSeconds": 456.75, + "sulfur": 10920, + "fuel": null + }, + { + "toolId": -1878475007, + "side": "both", + "caption": null, + "quantity": 10, + "timeSeconds": 22.5, + "sulfur": 4800, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "hard", + "caption": "Semi-Automatic Rifle", + "quantity": 185, + "timeSeconds": 78.675, + "sulfur": 4625, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "soft", + "caption": "Semi-Automatic Rifle", + "quantity": 173, + "timeSeconds": 72.35, + "sulfur": 4325, + "fuel": null + } + ] + }, + { + "key": "Stone U Shaped Stairs", + "name": "Stone U Shaped Stairs", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 27, + "timeSeconds": 32.8, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 18, + "sulfur": 5600, + "fuel": 120 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 31, + "timeSeconds": null, + "sulfur": 6200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 11.5, + "sulfur": 4400, + "fuel": 120 + }, + { + "toolId": 1840822026, + "side": null, + "caption": "Stuck (right click)", + "quantity": 46, + "timeSeconds": 175.125, + "sulfur": 5520, + "fuel": null + }, + { + "toolId": 143803535, + "side": null, + "caption": "Stuck (right click)", + "quantity": 182, + "timeSeconds": 456.75, + "sulfur": 10920, + "fuel": null + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 10, + "timeSeconds": 22.5, + "sulfur": 4800, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 173, + "timeSeconds": 72.35, + "sulfur": 4325, + "fuel": null + } + ] + }, + { + "key": "Stone Wall", + "name": "Stone Wall", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": "both", + "caption": null, + "quantity": 3, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "hard", + "caption": null, + "quantity": 29, + "timeSeconds": 33.6, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "soft", + "caption": null, + "quantity": 27, + "timeSeconds": 32.8, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": "both", + "caption": null, + "quantity": 4, + "timeSeconds": 18, + "sulfur": 5600, + "fuel": 120 + }, + { + "toolId": -1841918730, + "side": "hard", + "caption": null, + "quantity": 32, + "timeSeconds": 186, + "sulfur": 6400, + "fuel": null + }, + { + "toolId": -1841918730, + "side": "soft", + "caption": null, + "quantity": 31, + "timeSeconds": null, + "sulfur": 6200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": "both", + "caption": null, + "quantity": 2, + "timeSeconds": 11.5, + "sulfur": 4400, + "fuel": 120 + }, + { + "toolId": 1840822026, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 46, + "timeSeconds": 175.125, + "sulfur": 5520, + "fuel": null + }, + { + "toolId": 143803535, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 182, + "timeSeconds": 456.75, + "sulfur": 10920, + "fuel": null + }, + { + "toolId": -1878475007, + "side": "both", + "caption": null, + "quantity": 10, + "timeSeconds": 22.5, + "sulfur": 4800, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "hard", + "caption": "Semi-Automatic Rifle", + "quantity": 185, + "timeSeconds": 78.675, + "sulfur": 4625, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "soft", + "caption": "Semi-Automatic Rifle", + "quantity": 173, + "timeSeconds": 72.35, + "sulfur": 4325, + "fuel": null + } + ] + }, + { + "key": "Stone Wall Frame", + "name": "Stone Wall Frame", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 29, + "timeSeconds": 33.6, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 18, + "sulfur": 5600, + "fuel": 120 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 32, + "timeSeconds": 186, + "sulfur": 6400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 11.5, + "sulfur": 4400, + "fuel": 120 + }, + { + "toolId": 1840822026, + "side": null, + "caption": "Stuck (right click)", + "quantity": 46, + "timeSeconds": 175.125, + "sulfur": 5520, + "fuel": null + }, + { + "toolId": 143803535, + "side": null, + "caption": "Stuck (right click)", + "quantity": 182, + "timeSeconds": 456.75, + "sulfur": 10920, + "fuel": null + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 10, + "timeSeconds": 22.5, + "sulfur": 4800, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 185, + "timeSeconds": 78.675, + "sulfur": 4625, + "fuel": null + } + ] + }, + { + "key": "Stone Window", + "name": "Stone Window", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": "both", + "caption": null, + "quantity": 3, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "hard", + "caption": null, + "quantity": 29, + "timeSeconds": 33.6, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "soft", + "caption": null, + "quantity": 27, + "timeSeconds": 32.8, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": "both", + "caption": null, + "quantity": 4, + "timeSeconds": 18, + "sulfur": 5600, + "fuel": 120 + }, + { + "toolId": -1841918730, + "side": "hard", + "caption": null, + "quantity": 32, + "timeSeconds": 186, + "sulfur": 6400, + "fuel": null + }, + { + "toolId": -1841918730, + "side": "soft", + "caption": null, + "quantity": 31, + "timeSeconds": null, + "sulfur": 6200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": "both", + "caption": null, + "quantity": 2, + "timeSeconds": 11.5, + "sulfur": 4400, + "fuel": 120 + }, + { + "toolId": 1840822026, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 46, + "timeSeconds": 175.125, + "sulfur": 5520, + "fuel": null + }, + { + "toolId": 143803535, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 182, + "timeSeconds": 456.75, + "sulfur": 10920, + "fuel": null + }, + { + "toolId": -1878475007, + "side": "both", + "caption": null, + "quantity": 10, + "timeSeconds": 22.5, + "sulfur": 4800, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "hard", + "caption": "Semi-Automatic Rifle", + "quantity": 185, + "timeSeconds": 78.675, + "sulfur": 4625, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "soft", + "caption": "Semi-Automatic Rifle", + "quantity": 173, + "timeSeconds": 72.35, + "sulfur": 4325, + "fuel": null + } + ] + }, + { + "key": "Twig Doorway", + "name": "Twig Doorway", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 1, + "timeSeconds": 6.375, + "sulfur": 120, + "fuel": null + }, + { + "toolId": 14241751, + "side": "both", + "caption": "Hunting Bow", + "quantity": 1, + "timeSeconds": 1, + "sulfur": null, + "fuel": 5 + }, + { + "toolId": 143803535, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 1, + "timeSeconds": 4.25, + "sulfur": 60, + "fuel": null + }, + { + "toolId": -1215753368, + "side": "both", + "caption": null, + "quantity": 2, + "timeSeconds": 17.6, + "sulfur": null, + "fuel": 2 + }, + { + "toolId": 703057617, + "side": "both", + "caption": null, + "quantity": 3, + "timeSeconds": 17.7, + "sulfur": null, + "fuel": 3 + }, + { + "toolId": 1556365900, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "hard", + "caption": "Semi-Automatic Rifle", + "quantity": 2, + "timeSeconds": 1, + "sulfur": 50, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "soft", + "caption": "Semi-Automatic Rifle", + "quantity": 1, + "timeSeconds": 1, + "sulfur": 25, + "fuel": null + } + ] + }, + { + "key": "Twig Floor", + "name": "Twig Floor", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 1, + "timeSeconds": 6.375, + "sulfur": 120, + "fuel": null + }, + { + "toolId": 14241751, + "side": "both", + "caption": "Hunting Bow", + "quantity": 1, + "timeSeconds": 1, + "sulfur": null, + "fuel": 5 + }, + { + "toolId": 143803535, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 1, + "timeSeconds": 4.25, + "sulfur": 60, + "fuel": null + }, + { + "toolId": -1215753368, + "side": "both", + "caption": null, + "quantity": 2, + "timeSeconds": 17.6, + "sulfur": null, + "fuel": 2 + }, + { + "toolId": 703057617, + "side": "both", + "caption": null, + "quantity": 3, + "timeSeconds": 17.7, + "sulfur": null, + "fuel": 3 + }, + { + "toolId": 1556365900, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "hard", + "caption": "Semi-Automatic Rifle", + "quantity": 2, + "timeSeconds": 1, + "sulfur": 50, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "soft", + "caption": "Semi-Automatic Rifle", + "quantity": 1, + "timeSeconds": 1, + "sulfur": 25, + "fuel": null + } + ] + }, + { + "key": "Twig Floor Frame", + "name": "Twig Floor Frame", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": "Stuck (right click)", + "quantity": 1, + "timeSeconds": 6.375, + "sulfur": 120, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 1, + "timeSeconds": 1, + "sulfur": null, + "fuel": 5 + }, + { + "toolId": 143803535, + "side": null, + "caption": "Stuck (right click)", + "quantity": 1, + "timeSeconds": 4.25, + "sulfur": 60, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 17.6, + "sulfur": null, + "fuel": 2 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 17.7, + "sulfur": null, + "fuel": 3 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 2, + "timeSeconds": 1, + "sulfur": 50, + "fuel": null + } + ] + }, + { + "key": "Twig Floor Triangle", + "name": "Twig Floor Triangle", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 1, + "timeSeconds": 6.375, + "sulfur": 120, + "fuel": null + }, + { + "toolId": 14241751, + "side": "both", + "caption": "Hunting Bow", + "quantity": 1, + "timeSeconds": 1, + "sulfur": null, + "fuel": 5 + }, + { + "toolId": 143803535, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 1, + "timeSeconds": 4.25, + "sulfur": 60, + "fuel": null + }, + { + "toolId": -1215753368, + "side": "both", + "caption": null, + "quantity": 2, + "timeSeconds": 17.6, + "sulfur": null, + "fuel": 2 + }, + { + "toolId": 703057617, + "side": "both", + "caption": null, + "quantity": 3, + "timeSeconds": 17.7, + "sulfur": null, + "fuel": 3 + }, + { + "toolId": 1556365900, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "hard", + "caption": "Semi-Automatic Rifle", + "quantity": 2, + "timeSeconds": 1, + "sulfur": 50, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "soft", + "caption": "Semi-Automatic Rifle", + "quantity": 1, + "timeSeconds": 1, + "sulfur": 25, + "fuel": null + } + ] + }, + { + "key": "Twig Floor Triangle Frame", + "name": "Twig Floor Triangle Frame", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": "Stuck (right click)", + "quantity": 1, + "timeSeconds": 6.375, + "sulfur": 120, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 1, + "timeSeconds": 1, + "sulfur": null, + "fuel": 5 + }, + { + "toolId": 143803535, + "side": null, + "caption": "Stuck (right click)", + "quantity": 1, + "timeSeconds": 4.25, + "sulfur": 60, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 17.6, + "sulfur": null, + "fuel": 2 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 17.7, + "sulfur": null, + "fuel": 3 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 2, + "timeSeconds": 1, + "sulfur": 50, + "fuel": null + } + ] + }, + { + "key": "Twig Foundation", + "name": "Twig Foundation", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 1, + "timeSeconds": 6.375, + "sulfur": 120, + "fuel": null + }, + { + "toolId": 14241751, + "side": "both", + "caption": "Hunting Bow", + "quantity": 1, + "timeSeconds": 1, + "sulfur": null, + "fuel": 5 + }, + { + "toolId": 143803535, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 1, + "timeSeconds": 4.25, + "sulfur": 60, + "fuel": null + }, + { + "toolId": -1215753368, + "side": "both", + "caption": null, + "quantity": 2, + "timeSeconds": 17.6, + "sulfur": null, + "fuel": 2 + }, + { + "toolId": 703057617, + "side": "both", + "caption": null, + "quantity": 3, + "timeSeconds": 17.7, + "sulfur": null, + "fuel": 3 + }, + { + "toolId": 1556365900, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "hard", + "caption": "Semi-Automatic Rifle", + "quantity": 2, + "timeSeconds": 1, + "sulfur": 50, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "soft", + "caption": "Semi-Automatic Rifle", + "quantity": 1, + "timeSeconds": 1, + "sulfur": 25, + "fuel": null + } + ] + }, + { + "key": "Twig Half Wall", + "name": "Twig Half Wall", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 1, + "timeSeconds": 6.375, + "sulfur": 120, + "fuel": null + }, + { + "toolId": 14241751, + "side": "both", + "caption": "Hunting Bow", + "quantity": 1, + "timeSeconds": 1, + "sulfur": null, + "fuel": 5 + }, + { + "toolId": 143803535, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 1, + "timeSeconds": 4.25, + "sulfur": 60, + "fuel": null + }, + { + "toolId": -1215753368, + "side": "both", + "caption": null, + "quantity": 2, + "timeSeconds": 17.6, + "sulfur": null, + "fuel": 2 + }, + { + "toolId": 703057617, + "side": "both", + "caption": null, + "quantity": 3, + "timeSeconds": 17.7, + "sulfur": null, + "fuel": 3 + }, + { + "toolId": 1556365900, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "hard", + "caption": "Semi-Automatic Rifle", + "quantity": 2, + "timeSeconds": 1, + "sulfur": 50, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "soft", + "caption": "Semi-Automatic Rifle", + "quantity": 1, + "timeSeconds": 1, + "sulfur": 25, + "fuel": null + } + ] + }, + { + "key": "Twig Low Wall", + "name": "Twig Low Wall", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 1, + "timeSeconds": 6.375, + "sulfur": 120, + "fuel": null + }, + { + "toolId": 14241751, + "side": "both", + "caption": "Hunting Bow", + "quantity": 1, + "timeSeconds": 1, + "sulfur": null, + "fuel": 5 + }, + { + "toolId": 143803535, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 1, + "timeSeconds": 4.25, + "sulfur": 60, + "fuel": null + }, + { + "toolId": -1215753368, + "side": "both", + "caption": null, + "quantity": 2, + "timeSeconds": 17.6, + "sulfur": null, + "fuel": 2 + }, + { + "toolId": 703057617, + "side": "both", + "caption": null, + "quantity": 3, + "timeSeconds": 17.7, + "sulfur": null, + "fuel": 3 + }, + { + "toolId": 1556365900, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "hard", + "caption": "Semi-Automatic Rifle", + "quantity": 2, + "timeSeconds": 1, + "sulfur": 50, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "soft", + "caption": "Semi-Automatic Rifle", + "quantity": 1, + "timeSeconds": 1, + "sulfur": 25, + "fuel": null + } + ] + }, + { + "key": "Twig Ramp", + "name": "Twig Ramp", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": "Stuck (right click)", + "quantity": 1, + "timeSeconds": 6.375, + "sulfur": 120, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 1, + "timeSeconds": 1, + "sulfur": null, + "fuel": 5 + }, + { + "toolId": 143803535, + "side": null, + "caption": "Stuck (right click)", + "quantity": 1, + "timeSeconds": 4.25, + "sulfur": 60, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 17.6, + "sulfur": null, + "fuel": 2 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 17.7, + "sulfur": null, + "fuel": 3 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 1, + "timeSeconds": 1, + "sulfur": 25, + "fuel": null + } + ] + }, + { + "key": "Twig Roof", + "name": "Twig Roof", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 1, + "timeSeconds": 6.375, + "sulfur": 120, + "fuel": null + }, + { + "toolId": 14241751, + "side": "both", + "caption": "Hunting Bow", + "quantity": 1, + "timeSeconds": 1, + "sulfur": null, + "fuel": 5 + }, + { + "toolId": 143803535, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 1, + "timeSeconds": 4.25, + "sulfur": 60, + "fuel": null + }, + { + "toolId": -1215753368, + "side": "both", + "caption": null, + "quantity": 2, + "timeSeconds": 17.6, + "sulfur": null, + "fuel": 2 + }, + { + "toolId": 703057617, + "side": "both", + "caption": null, + "quantity": 3, + "timeSeconds": 17.7, + "sulfur": null, + "fuel": 3 + }, + { + "toolId": 1556365900, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "hard", + "caption": "Semi-Automatic Rifle", + "quantity": 2, + "timeSeconds": 1, + "sulfur": 50, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "soft", + "caption": "Semi-Automatic Rifle", + "quantity": 1, + "timeSeconds": 1, + "sulfur": 25, + "fuel": null + } + ] + }, + { + "key": "Twig Roof Triangle", + "name": "Twig Roof Triangle", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 1, + "timeSeconds": 6.375, + "sulfur": 120, + "fuel": null + }, + { + "toolId": 14241751, + "side": "both", + "caption": "Hunting Bow", + "quantity": 1, + "timeSeconds": 1, + "sulfur": null, + "fuel": 5 + }, + { + "toolId": 143803535, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 1, + "timeSeconds": 4.25, + "sulfur": 60, + "fuel": null + }, + { + "toolId": -1215753368, + "side": "both", + "caption": null, + "quantity": 2, + "timeSeconds": 17.6, + "sulfur": null, + "fuel": 2 + }, + { + "toolId": 703057617, + "side": "both", + "caption": null, + "quantity": 3, + "timeSeconds": 17.7, + "sulfur": null, + "fuel": 3 + }, + { + "toolId": 1556365900, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "hard", + "caption": "Semi-Automatic Rifle", + "quantity": 2, + "timeSeconds": 1, + "sulfur": 50, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "soft", + "caption": "Semi-Automatic Rifle", + "quantity": 1, + "timeSeconds": 1, + "sulfur": 25, + "fuel": null + } + ] + }, + { + "key": "Twig Stairs L Shape", + "name": "Twig Stairs L Shape", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": "Stuck (right click)", + "quantity": 1, + "timeSeconds": 6.375, + "sulfur": 120, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 1, + "timeSeconds": 1, + "sulfur": null, + "fuel": 5 + }, + { + "toolId": 143803535, + "side": null, + "caption": "Stuck (right click)", + "quantity": 1, + "timeSeconds": 4.25, + "sulfur": 60, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 17.6, + "sulfur": null, + "fuel": 2 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 17.7, + "sulfur": null, + "fuel": 3 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 1, + "timeSeconds": 1, + "sulfur": 25, + "fuel": null + } + ] + }, + { + "key": "Twig Stairs Spiral", + "name": "Twig Stairs Spiral", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": "Stuck (right click)", + "quantity": 1, + "timeSeconds": 6.375, + "sulfur": 120, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 1, + "timeSeconds": 1, + "sulfur": null, + "fuel": 5 + }, + { + "toolId": 143803535, + "side": null, + "caption": "Stuck (right click)", + "quantity": 1, + "timeSeconds": 4.25, + "sulfur": 60, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 17.6, + "sulfur": null, + "fuel": 2 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 17.7, + "sulfur": null, + "fuel": 3 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 1, + "timeSeconds": 1, + "sulfur": 25, + "fuel": null + } + ] + }, + { + "key": "Twig Stairs Spiral Triangle", + "name": "Twig Stairs Spiral Triangle", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": "Stuck (right click)", + "quantity": 1, + "timeSeconds": 6.375, + "sulfur": 120, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 1, + "timeSeconds": 1, + "sulfur": null, + "fuel": 5 + }, + { + "toolId": 143803535, + "side": null, + "caption": "Stuck (right click)", + "quantity": 1, + "timeSeconds": 4.25, + "sulfur": 60, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 17.6, + "sulfur": null, + "fuel": 2 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 17.7, + "sulfur": null, + "fuel": 3 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 1, + "timeSeconds": 1, + "sulfur": 25, + "fuel": null + } + ] + }, + { + "key": "Twig Steps", + "name": "Twig Steps", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": "Stuck (right click)", + "quantity": 1, + "timeSeconds": 6.375, + "sulfur": 120, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 1, + "timeSeconds": 1, + "sulfur": null, + "fuel": 5 + }, + { + "toolId": 143803535, + "side": null, + "caption": "Stuck (right click)", + "quantity": 1, + "timeSeconds": 4.25, + "sulfur": 60, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 17.6, + "sulfur": null, + "fuel": 2 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 17.7, + "sulfur": null, + "fuel": 3 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 1, + "timeSeconds": 1, + "sulfur": 25, + "fuel": null + } + ] + }, + { + "key": "Twig Triangle Foundation", + "name": "Twig Triangle Foundation", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 1, + "timeSeconds": 6.375, + "sulfur": 120, + "fuel": null + }, + { + "toolId": 14241751, + "side": "both", + "caption": "Hunting Bow", + "quantity": 1, + "timeSeconds": 1, + "sulfur": null, + "fuel": 5 + }, + { + "toolId": 143803535, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 1, + "timeSeconds": 4.25, + "sulfur": 60, + "fuel": null + }, + { + "toolId": -1215753368, + "side": "both", + "caption": null, + "quantity": 2, + "timeSeconds": 17.6, + "sulfur": null, + "fuel": 2 + }, + { + "toolId": 703057617, + "side": "both", + "caption": null, + "quantity": 3, + "timeSeconds": 17.7, + "sulfur": null, + "fuel": 3 + }, + { + "toolId": 1556365900, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "hard", + "caption": "Semi-Automatic Rifle", + "quantity": 2, + "timeSeconds": 1, + "sulfur": 50, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "soft", + "caption": "Semi-Automatic Rifle", + "quantity": 1, + "timeSeconds": 1, + "sulfur": 25, + "fuel": null + } + ] + }, + { + "key": "Twig U Shaped Stairs", + "name": "Twig U Shaped Stairs", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": "Stuck (right click)", + "quantity": 1, + "timeSeconds": 6.375, + "sulfur": 120, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 1, + "timeSeconds": 1, + "sulfur": null, + "fuel": 5 + }, + { + "toolId": 143803535, + "side": null, + "caption": "Stuck (right click)", + "quantity": 1, + "timeSeconds": 4.25, + "sulfur": 60, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 17.6, + "sulfur": null, + "fuel": 2 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 17.7, + "sulfur": null, + "fuel": 3 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 1, + "timeSeconds": 1, + "sulfur": 25, + "fuel": null + } + ] + }, + { + "key": "Twig Wall", + "name": "Twig Wall", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 1, + "timeSeconds": 6.375, + "sulfur": 120, + "fuel": null + }, + { + "toolId": 14241751, + "side": "both", + "caption": "Hunting Bow", + "quantity": 1, + "timeSeconds": 1, + "sulfur": null, + "fuel": 5 + }, + { + "toolId": 143803535, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 1, + "timeSeconds": 4.25, + "sulfur": 60, + "fuel": null + }, + { + "toolId": -1215753368, + "side": "both", + "caption": null, + "quantity": 2, + "timeSeconds": 17.6, + "sulfur": null, + "fuel": 2 + }, + { + "toolId": 703057617, + "side": "both", + "caption": null, + "quantity": 3, + "timeSeconds": 17.7, + "sulfur": null, + "fuel": 3 + }, + { + "toolId": 1556365900, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "hard", + "caption": "Semi-Automatic Rifle", + "quantity": 2, + "timeSeconds": 1, + "sulfur": 50, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "soft", + "caption": "Semi-Automatic Rifle", + "quantity": 1, + "timeSeconds": 1, + "sulfur": 25, + "fuel": null + } + ] + }, + { + "key": "Twig Wall Frame", + "name": "Twig Wall Frame", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": "Stuck (right click)", + "quantity": 1, + "timeSeconds": 6.375, + "sulfur": 120, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 1, + "timeSeconds": 1, + "sulfur": null, + "fuel": 5 + }, + { + "toolId": 143803535, + "side": null, + "caption": "Stuck (right click)", + "quantity": 1, + "timeSeconds": 4.25, + "sulfur": 60, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 17.6, + "sulfur": null, + "fuel": 2 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 17.7, + "sulfur": null, + "fuel": 3 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 2, + "timeSeconds": 1, + "sulfur": 50, + "fuel": null + } + ] + }, + { + "key": "Twig Window", + "name": "Twig Window", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 1400, + "fuel": 30 + }, + { + "toolId": 1638322904, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 1, + "timeSeconds": 6.375, + "sulfur": 120, + "fuel": null + }, + { + "toolId": 14241751, + "side": "both", + "caption": "Hunting Bow", + "quantity": 1, + "timeSeconds": 1, + "sulfur": null, + "fuel": 5 + }, + { + "toolId": 143803535, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 1, + "timeSeconds": 4.25, + "sulfur": 60, + "fuel": null + }, + { + "toolId": -1215753368, + "side": "both", + "caption": null, + "quantity": 2, + "timeSeconds": 17.6, + "sulfur": null, + "fuel": 2 + }, + { + "toolId": 703057617, + "side": "both", + "caption": null, + "quantity": 3, + "timeSeconds": 17.7, + "sulfur": null, + "fuel": 3 + }, + { + "toolId": 1556365900, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 18.5, + "sulfur": null, + "fuel": 50 + }, + { + "toolId": -1878475007, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "hard", + "caption": "Semi-Automatic Rifle", + "quantity": 2, + "timeSeconds": 1, + "sulfur": 50, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "soft", + "caption": "Semi-Automatic Rifle", + "quantity": 1, + "timeSeconds": 1, + "sulfur": 25, + "fuel": null + } + ] + }, + { + "key": "Wooden Doorway", + "name": "Wooden Doorway", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "both", + "caption": null, + "quantity": 8, + "timeSeconds": 8.4, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": "both", + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 2800, + "fuel": 60 + }, + { + "toolId": 1638322904, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 20.551605080357, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": "hard", + "caption": null, + "quantity": 9, + "timeSeconds": 48, + "sulfur": 1800, + "fuel": null + }, + { + "toolId": -1841918730, + "side": "soft", + "caption": null, + "quantity": 8, + "timeSeconds": 42, + "sulfur": 1600, + "fuel": null + }, + { + "toolId": 1248356124, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 13, + "timeSeconds": 51.375, + "sulfur": 1560, + "fuel": null + }, + { + "toolId": 14241751, + "side": "both", + "caption": "Hunting Bow", + "quantity": 125, + "timeSeconds": 124, + "sulfur": null, + "fuel": 625 + }, + { + "toolId": 143803535, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 59, + "timeSeconds": 149.25, + "sulfur": 3540, + "fuel": null + }, + { + "toolId": -1215753368, + "side": "both", + "caption": null, + "quantity": 206, + "timeSeconds": 44.8, + "sulfur": null, + "fuel": 206 + }, + { + "toolId": 703057617, + "side": "both", + "caption": null, + "quantity": 255, + "timeSeconds": 46.3, + "sulfur": null, + "fuel": 255 + }, + { + "toolId": 1556365900, + "side": "both", + "caption": null, + "quantity": 4, + "timeSeconds": 21.5, + "sulfur": null, + "fuel": 200 + }, + { + "toolId": -1878475007, + "side": "both", + "caption": null, + "quantity": 3, + "timeSeconds": 12, + "sulfur": 1440, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "hard", + "caption": "Semi-Automatic Rifle", + "quantity": 49, + "timeSeconds": 21.075, + "sulfur": 1225, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "soft", + "caption": "Semi-Automatic Rifle", + "quantity": 44, + "timeSeconds": 15.975, + "sulfur": 1100, + "fuel": null + } + ] + }, + { + "key": "Wooden Floor", + "name": "Wooden Floor", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "both", + "caption": null, + "quantity": 8, + "timeSeconds": 8.4, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": "both", + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 2800, + "fuel": 60 + }, + { + "toolId": 1638322904, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 20.551605080357, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": "hard", + "caption": null, + "quantity": 9, + "timeSeconds": 48, + "sulfur": 1800, + "fuel": null + }, + { + "toolId": -1841918730, + "side": "soft", + "caption": null, + "quantity": 8, + "timeSeconds": 42, + "sulfur": 1600, + "fuel": null + }, + { + "toolId": 1248356124, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 13, + "timeSeconds": 51.375, + "sulfur": 1560, + "fuel": null + }, + { + "toolId": 14241751, + "side": "both", + "caption": "Hunting Bow", + "quantity": 125, + "timeSeconds": 124, + "sulfur": null, + "fuel": 625 + }, + { + "toolId": 143803535, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 59, + "timeSeconds": 149.25, + "sulfur": 3540, + "fuel": null + }, + { + "toolId": -1215753368, + "side": "both", + "caption": null, + "quantity": 206, + "timeSeconds": 44.8, + "sulfur": null, + "fuel": 206 + }, + { + "toolId": 703057617, + "side": "both", + "caption": null, + "quantity": 255, + "timeSeconds": 46.3, + "sulfur": null, + "fuel": 255 + }, + { + "toolId": 1556365900, + "side": "both", + "caption": null, + "quantity": 4, + "timeSeconds": 21.5, + "sulfur": null, + "fuel": 200 + }, + { + "toolId": -1878475007, + "side": "both", + "caption": null, + "quantity": 3, + "timeSeconds": 12, + "sulfur": 1440, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "hard", + "caption": "Semi-Automatic Rifle", + "quantity": 49, + "timeSeconds": 21.075, + "sulfur": 1225, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "soft", + "caption": "Semi-Automatic Rifle", + "quantity": 44, + "timeSeconds": 15.975, + "sulfur": 1100, + "fuel": null + } + ] + }, + { + "key": "Wooden Floor Frame", + "name": "Wooden Floor Frame", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 8, + "timeSeconds": 8.4, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 2800, + "fuel": 60 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 20.551605080357, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 9, + "timeSeconds": 48, + "sulfur": 1800, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": "Stuck (right click)", + "quantity": 13, + "timeSeconds": 51.375, + "sulfur": 1560, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 125, + "timeSeconds": 124, + "sulfur": null, + "fuel": 625 + }, + { + "toolId": 143803535, + "side": null, + "caption": "Stuck (right click)", + "quantity": 59, + "timeSeconds": 149.25, + "sulfur": 3540, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 206, + "timeSeconds": 44.8, + "sulfur": null, + "fuel": 206 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 255, + "timeSeconds": 46.3, + "sulfur": null, + "fuel": 255 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 21.5, + "sulfur": null, + "fuel": 200 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 12, + "sulfur": 1440, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 49, + "timeSeconds": 21.075, + "sulfur": 1225, + "fuel": null + } + ] + }, + { + "key": "Wooden Floor Triangle", + "name": "Wooden Floor Triangle", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "both", + "caption": null, + "quantity": 8, + "timeSeconds": 8.4, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": "both", + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 2800, + "fuel": 60 + }, + { + "toolId": 1638322904, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 20.551605080357, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": "hard", + "caption": null, + "quantity": 9, + "timeSeconds": 48, + "sulfur": 1800, + "fuel": null + }, + { + "toolId": -1841918730, + "side": "soft", + "caption": null, + "quantity": 8, + "timeSeconds": 42, + "sulfur": 1600, + "fuel": null + }, + { + "toolId": 1248356124, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 13, + "timeSeconds": 51.375, + "sulfur": 1560, + "fuel": null + }, + { + "toolId": 14241751, + "side": "both", + "caption": "Hunting Bow", + "quantity": 125, + "timeSeconds": 124, + "sulfur": null, + "fuel": 625 + }, + { + "toolId": 143803535, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 59, + "timeSeconds": 149.25, + "sulfur": 3540, + "fuel": null + }, + { + "toolId": -1215753368, + "side": "both", + "caption": null, + "quantity": 206, + "timeSeconds": 44.8, + "sulfur": null, + "fuel": 206 + }, + { + "toolId": 703057617, + "side": "both", + "caption": null, + "quantity": 255, + "timeSeconds": 46.3, + "sulfur": null, + "fuel": 255 + }, + { + "toolId": 1556365900, + "side": "both", + "caption": null, + "quantity": 4, + "timeSeconds": 21.5, + "sulfur": null, + "fuel": 200 + }, + { + "toolId": -1878475007, + "side": "both", + "caption": null, + "quantity": 3, + "timeSeconds": 12, + "sulfur": 1440, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "hard", + "caption": "Semi-Automatic Rifle", + "quantity": 49, + "timeSeconds": 21.075, + "sulfur": 1225, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "soft", + "caption": "Semi-Automatic Rifle", + "quantity": 44, + "timeSeconds": 15.975, + "sulfur": 1100, + "fuel": null + } + ] + }, + { + "key": "Wooden Floor Triangle Frame", + "name": "Wooden Floor Triangle Frame", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 8, + "timeSeconds": 8.4, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 2800, + "fuel": 60 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 20.551605080357, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 9, + "timeSeconds": 48, + "sulfur": 1800, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": "Stuck (right click)", + "quantity": 13, + "timeSeconds": 51.375, + "sulfur": 1560, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 125, + "timeSeconds": 124, + "sulfur": null, + "fuel": 625 + }, + { + "toolId": 143803535, + "side": null, + "caption": "Stuck (right click)", + "quantity": 59, + "timeSeconds": 149.25, + "sulfur": 3540, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 206, + "timeSeconds": 44.8, + "sulfur": null, + "fuel": 206 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 255, + "timeSeconds": 46.3, + "sulfur": null, + "fuel": 255 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 21.5, + "sulfur": null, + "fuel": 200 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 12, + "sulfur": 1440, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 49, + "timeSeconds": 21.075, + "sulfur": 1225, + "fuel": null + } + ] + }, + { + "key": "Wooden Foundation", + "name": "Wooden Foundation", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "both", + "caption": null, + "quantity": 8, + "timeSeconds": 8.4, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": "both", + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 2800, + "fuel": 60 + }, + { + "toolId": 1638322904, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 20.551605080357, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": "hard", + "caption": null, + "quantity": 9, + "timeSeconds": 48, + "sulfur": 1800, + "fuel": null + }, + { + "toolId": -1841918730, + "side": "soft", + "caption": null, + "quantity": 8, + "timeSeconds": 42, + "sulfur": 1600, + "fuel": null + }, + { + "toolId": 1248356124, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 13, + "timeSeconds": 51.375, + "sulfur": 1560, + "fuel": null + }, + { + "toolId": 14241751, + "side": "both", + "caption": "Hunting Bow", + "quantity": 125, + "timeSeconds": 124, + "sulfur": null, + "fuel": 625 + }, + { + "toolId": 143803535, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 59, + "timeSeconds": 149.25, + "sulfur": 3540, + "fuel": null + }, + { + "toolId": -1215753368, + "side": "both", + "caption": null, + "quantity": 206, + "timeSeconds": 44.8, + "sulfur": null, + "fuel": 206 + }, + { + "toolId": 703057617, + "side": "both", + "caption": null, + "quantity": 255, + "timeSeconds": 46.3, + "sulfur": null, + "fuel": 255 + }, + { + "toolId": 1556365900, + "side": "both", + "caption": null, + "quantity": 4, + "timeSeconds": 21.5, + "sulfur": null, + "fuel": 200 + }, + { + "toolId": -1878475007, + "side": "both", + "caption": null, + "quantity": 3, + "timeSeconds": 12, + "sulfur": 1440, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "hard", + "caption": "Semi-Automatic Rifle", + "quantity": 49, + "timeSeconds": 21.075, + "sulfur": 1225, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "soft", + "caption": "Semi-Automatic Rifle", + "quantity": 44, + "timeSeconds": 15.975, + "sulfur": 1100, + "fuel": null + } + ] + }, + { + "key": "Wooden Half Wall", + "name": "Wooden Half Wall", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "both", + "caption": null, + "quantity": 8, + "timeSeconds": 8.4, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": "both", + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 2800, + "fuel": 60 + }, + { + "toolId": 1638322904, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 20.551605080357, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": "hard", + "caption": null, + "quantity": 9, + "timeSeconds": 48, + "sulfur": 1800, + "fuel": null + }, + { + "toolId": -1841918730, + "side": "soft", + "caption": null, + "quantity": 8, + "timeSeconds": 42, + "sulfur": 1600, + "fuel": null + }, + { + "toolId": 1248356124, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 13, + "timeSeconds": 51.375, + "sulfur": 1560, + "fuel": null + }, + { + "toolId": 14241751, + "side": "both", + "caption": "Hunting Bow", + "quantity": 125, + "timeSeconds": 124, + "sulfur": null, + "fuel": 625 + }, + { + "toolId": 143803535, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 59, + "timeSeconds": 149.25, + "sulfur": 3540, + "fuel": null + }, + { + "toolId": -1215753368, + "side": "both", + "caption": null, + "quantity": 206, + "timeSeconds": 44.8, + "sulfur": null, + "fuel": 206 + }, + { + "toolId": 703057617, + "side": "both", + "caption": null, + "quantity": 255, + "timeSeconds": 46.3, + "sulfur": null, + "fuel": 255 + }, + { + "toolId": 1556365900, + "side": "both", + "caption": null, + "quantity": 4, + "timeSeconds": 21.5, + "sulfur": null, + "fuel": 200 + }, + { + "toolId": -1878475007, + "side": "both", + "caption": null, + "quantity": 3, + "timeSeconds": 12, + "sulfur": 1440, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "hard", + "caption": "Semi-Automatic Rifle", + "quantity": 49, + "timeSeconds": 21.075, + "sulfur": 1225, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "soft", + "caption": "Semi-Automatic Rifle", + "quantity": 44, + "timeSeconds": 15.975, + "sulfur": 1100, + "fuel": null + } + ] + }, + { + "key": "Wooden Low Wall", + "name": "Wooden Low Wall", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "both", + "caption": null, + "quantity": 8, + "timeSeconds": 8.4, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": "both", + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 2800, + "fuel": 60 + }, + { + "toolId": 1638322904, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 20.551605080357, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": "hard", + "caption": null, + "quantity": 9, + "timeSeconds": 48, + "sulfur": 1800, + "fuel": null + }, + { + "toolId": -1841918730, + "side": "soft", + "caption": null, + "quantity": 8, + "timeSeconds": 42, + "sulfur": 1600, + "fuel": null + }, + { + "toolId": 1248356124, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 13, + "timeSeconds": 51.375, + "sulfur": 1560, + "fuel": null + }, + { + "toolId": 14241751, + "side": "both", + "caption": "Hunting Bow", + "quantity": 125, + "timeSeconds": 124, + "sulfur": null, + "fuel": 625 + }, + { + "toolId": 143803535, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 59, + "timeSeconds": 149.25, + "sulfur": 3540, + "fuel": null + }, + { + "toolId": -1215753368, + "side": "both", + "caption": null, + "quantity": 206, + "timeSeconds": 44.8, + "sulfur": null, + "fuel": 206 + }, + { + "toolId": 703057617, + "side": "both", + "caption": null, + "quantity": 255, + "timeSeconds": 46.3, + "sulfur": null, + "fuel": 255 + }, + { + "toolId": 1556365900, + "side": "both", + "caption": null, + "quantity": 4, + "timeSeconds": 21.5, + "sulfur": null, + "fuel": 200 + }, + { + "toolId": -1878475007, + "side": "both", + "caption": null, + "quantity": 3, + "timeSeconds": 12, + "sulfur": 1440, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "hard", + "caption": "Semi-Automatic Rifle", + "quantity": 49, + "timeSeconds": 21.075, + "sulfur": 1225, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "soft", + "caption": "Semi-Automatic Rifle", + "quantity": 44, + "timeSeconds": 15.975, + "sulfur": 1100, + "fuel": null + } + ] + }, + { + "key": "Wooden Ramp", + "name": "Wooden Ramp", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 8, + "timeSeconds": 8.4, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 2800, + "fuel": 60 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 20.551605080357, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 8, + "timeSeconds": 42, + "sulfur": 1600, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": "Stuck (right click)", + "quantity": 13, + "timeSeconds": 51.375, + "sulfur": 1560, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 125, + "timeSeconds": 124, + "sulfur": null, + "fuel": 625 + }, + { + "toolId": 143803535, + "side": null, + "caption": "Stuck (right click)", + "quantity": 59, + "timeSeconds": 149.25, + "sulfur": 3540, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 206, + "timeSeconds": 44.8, + "sulfur": null, + "fuel": 206 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 255, + "timeSeconds": 46.3, + "sulfur": null, + "fuel": 255 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 21.5, + "sulfur": null, + "fuel": 200 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 12, + "sulfur": 1440, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 44, + "timeSeconds": 15.975, + "sulfur": 1100, + "fuel": null + } + ] + }, + { + "key": "Wooden Roof", + "name": "Wooden Roof", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "both", + "caption": null, + "quantity": 8, + "timeSeconds": 8.4, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": "both", + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 2800, + "fuel": 60 + }, + { + "toolId": 1638322904, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 20.551605080357, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": "hard", + "caption": null, + "quantity": 9, + "timeSeconds": 48, + "sulfur": 1800, + "fuel": null + }, + { + "toolId": -1841918730, + "side": "soft", + "caption": null, + "quantity": 8, + "timeSeconds": 42, + "sulfur": 1600, + "fuel": null + }, + { + "toolId": 1248356124, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 13, + "timeSeconds": 51.375, + "sulfur": 1560, + "fuel": null + }, + { + "toolId": 14241751, + "side": "both", + "caption": "Hunting Bow", + "quantity": 125, + "timeSeconds": 124, + "sulfur": null, + "fuel": 625 + }, + { + "toolId": 143803535, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 59, + "timeSeconds": 149.25, + "sulfur": 3540, + "fuel": null + }, + { + "toolId": -1215753368, + "side": "both", + "caption": null, + "quantity": 206, + "timeSeconds": 44.8, + "sulfur": null, + "fuel": 206 + }, + { + "toolId": 703057617, + "side": "both", + "caption": null, + "quantity": 255, + "timeSeconds": 46.3, + "sulfur": null, + "fuel": 255 + }, + { + "toolId": 1556365900, + "side": "both", + "caption": null, + "quantity": 4, + "timeSeconds": 21.5, + "sulfur": null, + "fuel": 200 + }, + { + "toolId": -1878475007, + "side": "both", + "caption": null, + "quantity": 3, + "timeSeconds": 12, + "sulfur": 1440, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "hard", + "caption": "Semi-Automatic Rifle", + "quantity": 49, + "timeSeconds": 21.075, + "sulfur": 1225, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "soft", + "caption": "Semi-Automatic Rifle", + "quantity": 44, + "timeSeconds": 15.975, + "sulfur": 1100, + "fuel": null + } + ] + }, + { + "key": "Wooden Roof Triangle", + "name": "Wooden Roof Triangle", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "both", + "caption": null, + "quantity": 8, + "timeSeconds": 8.4, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": "both", + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 2800, + "fuel": 60 + }, + { + "toolId": 1638322904, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 20.551605080357, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": "hard", + "caption": null, + "quantity": 9, + "timeSeconds": 48, + "sulfur": 1800, + "fuel": null + }, + { + "toolId": -1841918730, + "side": "soft", + "caption": null, + "quantity": 8, + "timeSeconds": 42, + "sulfur": 1600, + "fuel": null + }, + { + "toolId": 1248356124, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 13, + "timeSeconds": 51.375, + "sulfur": 1560, + "fuel": null + }, + { + "toolId": 14241751, + "side": "both", + "caption": "Hunting Bow", + "quantity": 125, + "timeSeconds": 124, + "sulfur": null, + "fuel": 625 + }, + { + "toolId": 143803535, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 59, + "timeSeconds": 149.25, + "sulfur": 3540, + "fuel": null + }, + { + "toolId": -1215753368, + "side": "both", + "caption": null, + "quantity": 206, + "timeSeconds": 44.8, + "sulfur": null, + "fuel": 206 + }, + { + "toolId": 703057617, + "side": "both", + "caption": null, + "quantity": 255, + "timeSeconds": 46.3, + "sulfur": null, + "fuel": 255 + }, + { + "toolId": 1556365900, + "side": "both", + "caption": null, + "quantity": 4, + "timeSeconds": 21.5, + "sulfur": null, + "fuel": 200 + }, + { + "toolId": -1878475007, + "side": "both", + "caption": null, + "quantity": 3, + "timeSeconds": 12, + "sulfur": 1440, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "hard", + "caption": "Semi-Automatic Rifle", + "quantity": 49, + "timeSeconds": 21.075, + "sulfur": 1225, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "soft", + "caption": "Semi-Automatic Rifle", + "quantity": 44, + "timeSeconds": 15.975, + "sulfur": 1100, + "fuel": null + } + ] + }, + { + "key": "Wooden Stairs L Shape", + "name": "Wooden Stairs L Shape", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 8, + "timeSeconds": 8.4, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 2800, + "fuel": 60 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 20.551605080357, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 8, + "timeSeconds": 42, + "sulfur": 1600, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": "Stuck (right click)", + "quantity": 13, + "timeSeconds": 51.375, + "sulfur": 1560, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 125, + "timeSeconds": 124, + "sulfur": null, + "fuel": 625 + }, + { + "toolId": 143803535, + "side": null, + "caption": "Stuck (right click)", + "quantity": 59, + "timeSeconds": 149.25, + "sulfur": 3540, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 206, + "timeSeconds": 44.8, + "sulfur": null, + "fuel": 206 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 255, + "timeSeconds": 46.3, + "sulfur": null, + "fuel": 255 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 21.5, + "sulfur": null, + "fuel": 200 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 12, + "sulfur": 1440, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 44, + "timeSeconds": 15.975, + "sulfur": 1100, + "fuel": null + } + ] + }, + { + "key": "Wooden Stairs Spiral", + "name": "Wooden Stairs Spiral", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 8, + "timeSeconds": 8.4, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 2800, + "fuel": 60 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 20.551605080357, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 8, + "timeSeconds": 42, + "sulfur": 1600, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": "Stuck (right click)", + "quantity": 13, + "timeSeconds": 51.375, + "sulfur": 1560, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 125, + "timeSeconds": 124, + "sulfur": null, + "fuel": 625 + }, + { + "toolId": 143803535, + "side": null, + "caption": "Stuck (right click)", + "quantity": 59, + "timeSeconds": 149.25, + "sulfur": 3540, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 206, + "timeSeconds": 44.8, + "sulfur": null, + "fuel": 206 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 255, + "timeSeconds": 46.3, + "sulfur": null, + "fuel": 255 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 21.5, + "sulfur": null, + "fuel": 200 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 12, + "sulfur": 1440, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 44, + "timeSeconds": 15.975, + "sulfur": 1100, + "fuel": null + } + ] + }, + { + "key": "Wooden Stairs Spiral Triangle", + "name": "Wooden Stairs Spiral Triangle", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 8, + "timeSeconds": 8.4, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 2800, + "fuel": 60 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 20.551605080357, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 8, + "timeSeconds": 42, + "sulfur": 1600, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": "Stuck (right click)", + "quantity": 13, + "timeSeconds": 51.375, + "sulfur": 1560, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 125, + "timeSeconds": 124, + "sulfur": null, + "fuel": 625 + }, + { + "toolId": 143803535, + "side": null, + "caption": "Stuck (right click)", + "quantity": 59, + "timeSeconds": 149.25, + "sulfur": 3540, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 206, + "timeSeconds": 44.8, + "sulfur": null, + "fuel": 206 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 255, + "timeSeconds": 46.3, + "sulfur": null, + "fuel": 255 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 21.5, + "sulfur": null, + "fuel": 200 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 12, + "sulfur": 1440, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 44, + "timeSeconds": 15.975, + "sulfur": 1100, + "fuel": null + } + ] + }, + { + "key": "Wooden Steps", + "name": "Wooden Steps", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 8, + "timeSeconds": 8.4, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 2800, + "fuel": 60 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 20.551605080357, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 8, + "timeSeconds": 42, + "sulfur": 1600, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": "Stuck (right click)", + "quantity": 13, + "timeSeconds": 51.375, + "sulfur": 1560, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 125, + "timeSeconds": 124, + "sulfur": null, + "fuel": 625 + }, + { + "toolId": 143803535, + "side": null, + "caption": "Stuck (right click)", + "quantity": 59, + "timeSeconds": 149.25, + "sulfur": 3540, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 206, + "timeSeconds": 44.8, + "sulfur": null, + "fuel": 206 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 255, + "timeSeconds": 46.3, + "sulfur": null, + "fuel": 255 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 21.5, + "sulfur": null, + "fuel": 200 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 12, + "sulfur": 1440, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 44, + "timeSeconds": 15.975, + "sulfur": 1100, + "fuel": null + } + ] + }, + { + "key": "Wooden Triangle Foundation", + "name": "Wooden Triangle Foundation", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "both", + "caption": null, + "quantity": 8, + "timeSeconds": 8.4, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": "both", + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 2800, + "fuel": 60 + }, + { + "toolId": 1638322904, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 20.551605080357, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": "hard", + "caption": null, + "quantity": 9, + "timeSeconds": 48, + "sulfur": 1800, + "fuel": null + }, + { + "toolId": -1841918730, + "side": "soft", + "caption": null, + "quantity": 8, + "timeSeconds": 42, + "sulfur": 1600, + "fuel": null + }, + { + "toolId": 1248356124, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 13, + "timeSeconds": 51.375, + "sulfur": 1560, + "fuel": null + }, + { + "toolId": 14241751, + "side": "both", + "caption": "Hunting Bow", + "quantity": 125, + "timeSeconds": 124, + "sulfur": null, + "fuel": 625 + }, + { + "toolId": 143803535, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 59, + "timeSeconds": 149.25, + "sulfur": 3540, + "fuel": null + }, + { + "toolId": -1215753368, + "side": "both", + "caption": null, + "quantity": 206, + "timeSeconds": 44.8, + "sulfur": null, + "fuel": 206 + }, + { + "toolId": 703057617, + "side": "both", + "caption": null, + "quantity": 255, + "timeSeconds": 46.3, + "sulfur": null, + "fuel": 255 + }, + { + "toolId": 1556365900, + "side": "both", + "caption": null, + "quantity": 4, + "timeSeconds": 21.5, + "sulfur": null, + "fuel": 200 + }, + { + "toolId": -1878475007, + "side": "both", + "caption": null, + "quantity": 3, + "timeSeconds": 12, + "sulfur": 1440, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "hard", + "caption": "Semi-Automatic Rifle", + "quantity": 49, + "timeSeconds": 21.075, + "sulfur": 1225, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "soft", + "caption": "Semi-Automatic Rifle", + "quantity": 44, + "timeSeconds": 15.975, + "sulfur": 1100, + "fuel": null + } + ] + }, + { + "key": "Wooden U Shaped Stairs", + "name": "Wooden U Shaped Stairs", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 8, + "timeSeconds": 8.4, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 2800, + "fuel": 60 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 20.551605080357, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 8, + "timeSeconds": 42, + "sulfur": 1600, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": "Stuck (right click)", + "quantity": 13, + "timeSeconds": 51.375, + "sulfur": 1560, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 125, + "timeSeconds": 124, + "sulfur": null, + "fuel": 625 + }, + { + "toolId": 143803535, + "side": null, + "caption": "Stuck (right click)", + "quantity": 59, + "timeSeconds": 149.25, + "sulfur": 3540, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 206, + "timeSeconds": 44.8, + "sulfur": null, + "fuel": 206 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 255, + "timeSeconds": 46.3, + "sulfur": null, + "fuel": 255 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 21.5, + "sulfur": null, + "fuel": 200 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 12, + "sulfur": 1440, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 44, + "timeSeconds": 15.975, + "sulfur": 1100, + "fuel": null + } + ] + }, + { + "key": "Wooden Wall", + "name": "Wooden Wall", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "both", + "caption": null, + "quantity": 8, + "timeSeconds": 8.4, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": "both", + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 2800, + "fuel": 60 + }, + { + "toolId": 1638322904, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 20.551605080357, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": "hard", + "caption": null, + "quantity": 9, + "timeSeconds": 48, + "sulfur": 1800, + "fuel": null + }, + { + "toolId": -1841918730, + "side": "soft", + "caption": null, + "quantity": 8, + "timeSeconds": 42, + "sulfur": 1600, + "fuel": null + }, + { + "toolId": 1248356124, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 13, + "timeSeconds": 51.375, + "sulfur": 1560, + "fuel": null + }, + { + "toolId": 14241751, + "side": "both", + "caption": "Hunting Bow", + "quantity": 125, + "timeSeconds": 124, + "sulfur": null, + "fuel": 625 + }, + { + "toolId": 143803535, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 59, + "timeSeconds": 149.25, + "sulfur": 3540, + "fuel": null + }, + { + "toolId": -1215753368, + "side": "both", + "caption": null, + "quantity": 206, + "timeSeconds": 44.8, + "sulfur": null, + "fuel": 206 + }, + { + "toolId": 703057617, + "side": "both", + "caption": null, + "quantity": 255, + "timeSeconds": 46.3, + "sulfur": null, + "fuel": 255 + }, + { + "toolId": 1556365900, + "side": "both", + "caption": null, + "quantity": 4, + "timeSeconds": 21.5, + "sulfur": null, + "fuel": 200 + }, + { + "toolId": -1878475007, + "side": "both", + "caption": null, + "quantity": 3, + "timeSeconds": 12, + "sulfur": 1440, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "hard", + "caption": "Semi-Automatic Rifle", + "quantity": 49, + "timeSeconds": 21.075, + "sulfur": 1225, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "soft", + "caption": "Semi-Automatic Rifle", + "quantity": 44, + "timeSeconds": 15.975, + "sulfur": 1100, + "fuel": null + } + ] + }, + { + "key": "Wooden Wall Frame", + "name": "Wooden Wall Frame", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 8, + "timeSeconds": 8.4, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 2800, + "fuel": 60 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 20.551605080357, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 9, + "timeSeconds": 48, + "sulfur": 1800, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": "Stuck (right click)", + "quantity": 13, + "timeSeconds": 51.375, + "sulfur": 1560, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 125, + "timeSeconds": 124, + "sulfur": null, + "fuel": 625 + }, + { + "toolId": 143803535, + "side": null, + "caption": "Stuck (right click)", + "quantity": 59, + "timeSeconds": 149.25, + "sulfur": 3540, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 206, + "timeSeconds": 44.8, + "sulfur": null, + "fuel": 206 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 255, + "timeSeconds": 46.3, + "sulfur": null, + "fuel": 255 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 21.5, + "sulfur": null, + "fuel": 200 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 12, + "sulfur": 1440, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 49, + "timeSeconds": 21.075, + "sulfur": 1225, + "fuel": null + } + ] + }, + { + "key": "Wooden Window", + "name": "Wooden Window", + "kind": 1, + "costs": [ + { + "toolId": -1843426638, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": "both", + "caption": null, + "quantity": 8, + "timeSeconds": 8.4, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": "both", + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 2800, + "fuel": 60 + }, + { + "toolId": 1638322904, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 20.551605080357, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": "hard", + "caption": null, + "quantity": 9, + "timeSeconds": 48, + "sulfur": 1800, + "fuel": null + }, + { + "toolId": -1841918730, + "side": "soft", + "caption": null, + "quantity": 8, + "timeSeconds": 42, + "sulfur": 1600, + "fuel": null + }, + { + "toolId": 1248356124, + "side": "both", + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 13, + "timeSeconds": 51.375, + "sulfur": 1560, + "fuel": null + }, + { + "toolId": 14241751, + "side": "both", + "caption": "Hunting Bow", + "quantity": 125, + "timeSeconds": 124, + "sulfur": null, + "fuel": 625 + }, + { + "toolId": 143803535, + "side": "both", + "caption": "Stuck (right click)", + "quantity": 59, + "timeSeconds": 149.25, + "sulfur": 3540, + "fuel": null + }, + { + "toolId": -1215753368, + "side": "both", + "caption": null, + "quantity": 206, + "timeSeconds": 44.8, + "sulfur": null, + "fuel": 206 + }, + { + "toolId": 703057617, + "side": "both", + "caption": null, + "quantity": 255, + "timeSeconds": 46.3, + "sulfur": null, + "fuel": 255 + }, + { + "toolId": 1556365900, + "side": "both", + "caption": null, + "quantity": 4, + "timeSeconds": 21.5, + "sulfur": null, + "fuel": 200 + }, + { + "toolId": -1878475007, + "side": "both", + "caption": null, + "quantity": 3, + "timeSeconds": 12, + "sulfur": 1440, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "hard", + "caption": "Semi-Automatic Rifle", + "quantity": 49, + "timeSeconds": 21.075, + "sulfur": 1225, + "fuel": null + }, + { + "toolId": -1321651331, + "side": "soft", + "caption": "Semi-Automatic Rifle", + "quantity": 44, + "timeSeconds": 15.975, + "sulfur": 1100, + "fuel": null + } + ] + }, + { + "key": "Attack Helicopter", + "name": "Attack Helicopter", + "kind": 2, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 13, + "timeSeconds": 16, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 2800, + "fuel": 60 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 9, + "timeSeconds": 48, + "sulfur": 2700, + "fuel": 675 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 12, + "sulfur": 600, + "fuel": null + }, + { + "toolId": 1296788329, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 29, + "timeSeconds": 38.55, + "sulfur": 3480, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 22, + "timeSeconds": 21, + "sulfur": null, + "fuel": 110 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 16, + "timeSeconds": 21.7, + "sulfur": 960, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 125, + "timeSeconds": 15.8, + "sulfur": null, + "fuel": 125 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 107, + "timeSeconds": 10.6, + "sulfur": null, + "fuel": 107 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 13, + "timeSeconds": 30.5, + "sulfur": null, + "fuel": 650 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 12, + "sulfur": 1440, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 71, + "timeSeconds": 29.15, + "sulfur": 1775, + "fuel": null + } + ] + }, + { + "key": "Bike", + "name": "Bike", + "kind": 2, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 11, + "timeSeconds": 9.6, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 2800, + "fuel": 60 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 100, + "timeSeconds": 594, + "sulfur": 30000, + "fuel": 7500 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 19, + "timeSeconds": 26.55, + "sulfur": 2280, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 84, + "timeSeconds": 83, + "sulfur": null, + "fuel": 420 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 8.5, + "sulfur": 300, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 1471, + "timeSeconds": 194.6, + "sulfur": null, + "fuel": 1471 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 1250, + "timeSeconds": 152.1, + "sulfur": null, + "fuel": 1250 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 143, + "timeSeconds": 160.5, + "sulfur": null, + "fuel": 7150 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 10.5, + "sulfur": 960, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 36, + "timeSeconds": 14.575, + "sulfur": 900, + "fuel": null + } + ] + }, + { + "key": "Bradley APC", + "name": "Bradley APC", + "kind": 2, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 7, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 82, + "timeSeconds": 105.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 11, + "timeSeconds": null, + "sulfur": 15400, + "fuel": 330 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 7, + "timeSeconds": 36, + "sulfur": 1400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 13, + "sulfur": 6600, + "fuel": 180 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 191, + "timeSeconds": 232.95, + "sulfur": 22920, + "fuel": null + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 40, + "timeSeconds": 50.5, + "sulfur": 2400, + "fuel": null + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 20, + "timeSeconds": 37.5, + "sulfur": 9600, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 571, + "timeSeconds": 247.625, + "sulfur": 14275, + "fuel": null + } + ] + }, + { + "key": "Duo Submarine", + "name": "Duo Submarine", + "kind": 2, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 13, + "timeSeconds": 16, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 2800, + "fuel": 60 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 280, + "timeSeconds": 1674, + "sulfur": 84000, + "fuel": 21000 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 26, + "timeSeconds": 34.95, + "sulfur": 3120, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 234, + "timeSeconds": 233, + "sulfur": null, + "fuel": 1170 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 7, + "timeSeconds": 10.9, + "sulfur": 420, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 4118, + "timeSeconds": 551.1, + "sulfur": null, + "fuel": 4118 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 3500, + "timeSeconds": 428.1, + "sulfur": null, + "fuel": 3500 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 400, + "timeSeconds": 417.5, + "sulfur": null, + "fuel": 20000 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 12, + "sulfur": 1440, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 36, + "timeSeconds": 14.575, + "sulfur": 900, + "fuel": null + } + ] + }, + { + "key": "Hot Air Balloon", + "name": "Hot Air Balloon", + "kind": 2, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 24, + "timeSeconds": 26, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 24, + "sulfur": 7000, + "fuel": 150 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 60, + "timeSeconds": 354, + "sulfur": 18000, + "fuel": 4500 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 8, + "timeSeconds": 42, + "sulfur": 1600, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 11.5, + "sulfur": 4400, + "fuel": 120 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 24, + "timeSeconds": 32.55, + "sulfur": 2880, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 150, + "timeSeconds": 149, + "sulfur": null, + "fuel": 750 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 19, + "timeSeconds": 25.3, + "sulfur": 1140, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 883, + "timeSeconds": 115.4, + "sulfur": null, + "fuel": 883 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 750, + "timeSeconds": 88.5, + "sulfur": null, + "fuel": 750 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 86, + "timeSeconds": 103.5, + "sulfur": null, + "fuel": 4300 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 12, + "sulfur": 1440, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 167, + "timeSeconds": 71.3, + "sulfur": 4175, + "fuel": null + } + ] + }, + { + "key": "Magnet Crane", + "name": "Magnet Crane", + "kind": 2, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 22, + "timeSeconds": 25.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 12, + "sulfur": 4200, + "fuel": 90 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 200, + "timeSeconds": 1194, + "sulfur": 60000, + "fuel": 15000 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 38, + "timeSeconds": 49.35, + "sulfur": 4560, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 167, + "timeSeconds": 166, + "sulfur": null, + "fuel": 835 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 10, + "timeSeconds": 14.5, + "sulfur": 600, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 2942, + "timeSeconds": 392.7, + "sulfur": null, + "fuel": 2942 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 2500, + "timeSeconds": 304.3, + "sulfur": null, + "fuel": 2500 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 286, + "timeSeconds": 303.5, + "sulfur": null, + "fuel": 14300 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 13.5, + "sulfur": 1920, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 72, + "timeSeconds": 29.325, + "sulfur": 1800, + "fuel": null + } + ] + }, + { + "key": "Minicopter", + "name": "Minicopter", + "kind": 2, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 11, + "timeSeconds": 9.6, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 2800, + "fuel": 60 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 8, + "timeSeconds": 42, + "sulfur": 2400, + "fuel": 600 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 12, + "sulfur": 600, + "fuel": null + }, + { + "toolId": 1296788329, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 25, + "timeSeconds": 33.75, + "sulfur": 3000, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 19, + "timeSeconds": 18, + "sulfur": null, + "fuel": 95 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 14, + "timeSeconds": 19.3, + "sulfur": 840, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 111, + "timeSeconds": 14.4, + "sulfur": null, + "fuel": 111 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 94, + "timeSeconds": 9.3, + "sulfur": null, + "fuel": 94 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 11, + "timeSeconds": 28.5, + "sulfur": null, + "fuel": 550 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 12, + "sulfur": 1440, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 63, + "timeSeconds": 23.525, + "sulfur": 1575, + "fuel": null + } + ] + }, + { + "key": "Monument SAM Site", + "name": "Monument SAM Site", + "kind": 2, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 29, + "timeSeconds": 33.6, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 18, + "sulfur": 5600, + "fuel": 120 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 41.103210160714, + "sulfur": 300, + "fuel": 75 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 23, + "timeSeconds": 132, + "sulfur": 4600, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 67, + "timeSeconds": 84.15, + "sulfur": 8040, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 56, + "timeSeconds": 67.5, + "sulfur": null, + "fuel": 280 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 134, + "timeSeconds": 163.3, + "sulfur": 8040, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 412, + "timeSeconds": 72.2, + "sulfur": null, + "fuel": 412 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 509, + "timeSeconds": 78.5, + "sulfur": null, + "fuel": 509 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 7, + "timeSeconds": 24.5, + "sulfur": null, + "fuel": 350 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 7, + "timeSeconds": 18, + "sulfur": 3360, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 112, + "timeSeconds": 44.775, + "sulfur": 2800, + "fuel": null + } + ] + }, + { + "key": "Motor Rowboat", + "name": "Motor Rowboat", + "kind": 2, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 7, + "timeSeconds": 8, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 2800, + "fuel": 60 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 16, + "timeSeconds": 90, + "sulfur": 4800, + "fuel": 1200 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 7, + "timeSeconds": 12.15, + "sulfur": 840, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 40, + "timeSeconds": 39, + "sulfur": null, + "fuel": 200 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 7.3, + "sulfur": 240, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 236, + "timeSeconds": 30.3, + "sulfur": null, + "fuel": 236 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 200, + "timeSeconds": 23.3, + "sulfur": null, + "fuel": 200 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 23, + "timeSeconds": 40.5, + "sulfur": null, + "fuel": 1150 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 9, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 45, + "timeSeconds": 16.15, + "sulfur": 1125, + "fuel": null + } + ] + }, + { + "key": "Motorbike", + "name": "Motorbike", + "kind": 2, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 13, + "timeSeconds": 16, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 2800, + "fuel": 60 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 120, + "timeSeconds": 714, + "sulfur": 36000, + "fuel": 9000 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 23, + "timeSeconds": 31.35, + "sulfur": 2760, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 100, + "timeSeconds": 99, + "sulfur": null, + "fuel": 500 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 6, + "timeSeconds": 9.7, + "sulfur": 360, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 1765, + "timeSeconds": 234.2, + "sulfur": null, + "fuel": 1765 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 1500, + "timeSeconds": null, + "sulfur": null, + "fuel": 1500 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 172, + "timeSeconds": 189.5, + "sulfur": null, + "fuel": 8600 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 12, + "sulfur": 1440, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 43, + "timeSeconds": 15.8, + "sulfur": 1075, + "fuel": null + } + ] + }, + { + "key": "RHIB", + "name": "RHIB", + "kind": 2, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 20, + "timeSeconds": 24.4, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 12, + "sulfur": 4200, + "fuel": 90 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 200, + "timeSeconds": 1194, + "sulfur": 60000, + "fuel": 15000 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 44, + "timeSeconds": 56.55, + "sulfur": 5280, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 500, + "timeSeconds": 499, + "sulfur": null, + "fuel": 2500 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 8, + "timeSeconds": 12.1, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 2942, + "timeSeconds": 392.7, + "sulfur": null, + "fuel": 2942 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 2500, + "timeSeconds": 304.3, + "sulfur": null, + "fuel": 2500 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 286, + "timeSeconds": 303.5, + "sulfur": null, + "fuel": 14300 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 15, + "sulfur": 2400, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 129, + "timeSeconds": 56.2, + "sulfur": 3225, + "fuel": null + } + ] + }, + { + "key": "Scrap Transport Helicopter", + "name": "Scrap Transport Helicopter", + "kind": 2, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 8, + "timeSeconds": 8.4, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 2800, + "fuel": 60 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 10, + "timeSeconds": 54, + "sulfur": 3000, + "fuel": 750 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 24, + "sulfur": 1000, + "fuel": null + }, + { + "toolId": 1296788329, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 18, + "sulfur": 400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 13, + "timeSeconds": 19.35, + "sulfur": 1560, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 25, + "timeSeconds": 24, + "sulfur": null, + "fuel": 125 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 8, + "timeSeconds": 12.1, + "sulfur": 480, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 148, + "timeSeconds": 18.1, + "sulfur": null, + "fuel": 148 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 126, + "timeSeconds": 12.5, + "sulfur": null, + "fuel": 126 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 15, + "timeSeconds": 32.5, + "sulfur": null, + "fuel": 750 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 10.5, + "sulfur": 960, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 84, + "timeSeconds": 35.65, + "sulfur": 2100, + "fuel": null + } + ] + }, + { + "key": "Sidecar Motorbike", + "name": "Sidecar Motorbike", + "kind": 2, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 15, + "timeSeconds": 16.8, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 12, + "sulfur": 4200, + "fuel": 90 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 140, + "timeSeconds": 834, + "sulfur": 42000, + "fuel": 10500 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 26, + "timeSeconds": 34.95, + "sulfur": 3120, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 117, + "timeSeconds": 116, + "sulfur": null, + "fuel": 585 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 7, + "timeSeconds": 10.9, + "sulfur": 420, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 2059, + "timeSeconds": 273.8, + "sulfur": null, + "fuel": 2059 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 1750, + "timeSeconds": 212.3, + "sulfur": null, + "fuel": 1750 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 200, + "timeSeconds": 217.5, + "sulfur": null, + "fuel": 10000 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 12, + "sulfur": 1440, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 50, + "timeSeconds": 21.25, + "sulfur": 1250, + "fuel": null + } + ] + }, + { + "key": "Snowmobile", + "name": "Snowmobile", + "kind": 2, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 13, + "timeSeconds": 16, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 2800, + "fuel": 60 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 120, + "timeSeconds": 714, + "sulfur": 36000, + "fuel": 9000 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 23, + "timeSeconds": 31.35, + "sulfur": 2760, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 100, + "timeSeconds": 99, + "sulfur": null, + "fuel": 500 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 6, + "timeSeconds": 9.7, + "sulfur": 360, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 1765, + "timeSeconds": 234.2, + "sulfur": null, + "fuel": 1765 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 1500, + "timeSeconds": null, + "sulfur": null, + "fuel": 1500 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 172, + "timeSeconds": 189.5, + "sulfur": null, + "fuel": 8600 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 12, + "sulfur": 1440, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 43, + "timeSeconds": 15.8, + "sulfur": 1075, + "fuel": null + } + ] + }, + { + "key": "Solo Submarine", + "name": "Solo Submarine", + "kind": 2, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 10, + "timeSeconds": 9.2, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 2800, + "fuel": 60 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 200, + "timeSeconds": 1194, + "sulfur": 60000, + "fuel": 15000 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 1, + "sulfur": 200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 19, + "timeSeconds": 26.55, + "sulfur": 2280, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 167, + "timeSeconds": 166, + "sulfur": null, + "fuel": 835 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 5, + "timeSeconds": 8.5, + "sulfur": 300, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 2942, + "timeSeconds": 392.7, + "sulfur": null, + "fuel": 2942 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 2500, + "timeSeconds": 304.3, + "sulfur": null, + "fuel": 2500 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 286, + "timeSeconds": 303.5, + "sulfur": null, + "fuel": 14300 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 10.5, + "sulfur": 960, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 26, + "timeSeconds": 8.6, + "sulfur": 650, + "fuel": null + } + ] + }, + { + "key": "Trike", + "name": "Trike", + "kind": 2, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 12, + "timeSeconds": 10, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 2800, + "fuel": 60 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 110, + "timeSeconds": 654, + "sulfur": 33000, + "fuel": 8250 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 2, + "timeSeconds": 6, + "sulfur": 400, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 1, + "timeSeconds": 10, + "sulfur": 2200, + "fuel": 60 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 21, + "timeSeconds": 28.95, + "sulfur": 2520, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 92, + "timeSeconds": 91, + "sulfur": null, + "fuel": 460 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 6, + "timeSeconds": 9.7, + "sulfur": 360, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 1618, + "timeSeconds": 216.1, + "sulfur": null, + "fuel": 1618 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 1375, + "timeSeconds": 168, + "sulfur": null, + "fuel": 1375 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 158, + "timeSeconds": 175.5, + "sulfur": null, + "fuel": 7900 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 3, + "timeSeconds": 12, + "sulfur": 1440, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 40, + "timeSeconds": 15.275, + "sulfur": 1000, + "fuel": null + } + ] + }, + { + "key": "Tugboat", + "name": "Tugboat", + "kind": 2, + "costs": [ + { + "toolId": -1843426638, + "side": null, + "caption": null, + "quantity": 10, + "timeSeconds": 0, + "sulfur": null, + "fuel": null + }, + { + "toolId": 349762871, + "side": null, + "caption": null, + "quantity": 120, + "timeSeconds": 154, + "sulfur": null, + "fuel": null + }, + { + "toolId": -742865266, + "side": null, + "caption": null, + "quantity": 16, + "timeSeconds": 90, + "sulfur": 22400, + "fuel": 480 + }, + { + "toolId": 1638322904, + "side": null, + "caption": null, + "quantity": 1200, + "timeSeconds": 7194, + "sulfur": 360000, + "fuel": 90000 + }, + { + "toolId": -1841918730, + "side": null, + "caption": null, + "quantity": 11, + "timeSeconds": null, + "sulfur": 2200, + "fuel": null + }, + { + "toolId": 1248356124, + "side": null, + "caption": null, + "quantity": 4, + "timeSeconds": 14.5, + "sulfur": 8800, + "fuel": 240 + }, + { + "toolId": 1840822026, + "side": null, + "caption": null, + "quantity": 261, + "timeSeconds": 316.95, + "sulfur": 31320, + "fuel": null + }, + { + "toolId": 14241751, + "side": null, + "caption": "Hunting Bow", + "quantity": 3000, + "timeSeconds": 2999, + "sulfur": null, + "fuel": 15000 + }, + { + "toolId": 143803535, + "side": null, + "caption": null, + "quantity": 68, + "timeSeconds": 84.1, + "sulfur": 4080, + "fuel": null + }, + { + "toolId": -1215753368, + "side": null, + "caption": null, + "quantity": 17648, + "timeSeconds": 2363.1, + "sulfur": null, + "fuel": 17648 + }, + { + "toolId": 703057617, + "side": null, + "caption": null, + "quantity": 15000, + "timeSeconds": 1836.5, + "sulfur": null, + "fuel": 15000 + }, + { + "toolId": 1556365900, + "side": null, + "caption": null, + "quantity": 1715, + "timeSeconds": 1732.5, + "sulfur": null, + "fuel": 85750 + }, + { + "toolId": -1878475007, + "side": null, + "caption": null, + "quantity": 27, + "timeSeconds": 48, + "sulfur": 12960, + "fuel": null + }, + { + "toolId": -1321651331, + "side": null, + "caption": "Semi-Automatic Rifle", + "quantity": 769, + "timeSeconds": 337.2, + "sulfur": 19225, + "fuel": null + } + ] + } ] } \ No newline at end of file diff --git a/src/RustPlusBot.Features.ItemData/EmbeddedItemDatabase.cs b/src/RustPlusBot.Features.ItemData/EmbeddedItemDatabase.cs index ed1310b9..2e340303 100644 --- a/src/RustPlusBot.Features.ItemData/EmbeddedItemDatabase.cs +++ b/src/RustPlusBot.Features.ItemData/EmbeddedItemDatabase.cs @@ -1,4 +1,5 @@ using System.Collections.Frozen; +using System.Globalization; using System.Text.Json; using System.Text.Json.Serialization; using RustPlusBot.Features.ItemData.Data; @@ -9,7 +10,7 @@ namespace RustPlusBot.Features.ItemData; /// Loads the embedded item-data.json once and serves lookups. Singleton. public sealed class EmbeddedItemDatabase : IItemDatabase { - private const int ExpectedSchemaVersion = 2; + private const int ExpectedSchemaVersion = 3; private static readonly JsonSerializerOptions JsonOptions = new(JsonSerializerDefaults.Web) { @@ -20,6 +21,10 @@ public sealed class EmbeddedItemDatabase : IItemDatabase private static readonly FrozenDictionary ById = IndexById(Dataset.Items); + private static readonly IReadOnlyList Raid = Dataset.RaidTargets ?? []; + + private static readonly FrozenDictionary RaidById = IndexRaidById(Raid); + /// public DatasetSources Sources => Dataset.Sources; @@ -29,6 +34,9 @@ public sealed class EmbeddedItemDatabase : IItemDatabase /// public ItemMatch Resolve(string query) => ItemLookup.Resolve(query, GetById, Dataset.Items); + /// + public RaidMatch ResolveRaidTarget(string query) => RaidLookup.Resolve(query, RaidById.GetValueOrDefault, Raid); + /// /// Deserializes and validates an item dataset from . /// Throws when the schema version does not match @@ -62,6 +70,14 @@ internal static ItemDataset Parse(Stream stream, int expectedSchemaVersion) internal static FrozenDictionary IndexById(IReadOnlyList items) => items.GroupBy(i => i.Id).ToFrozenDictionary(g => g.Key, g => g.Last()); + /// Builds a frozen id→target index from the item-kind raid targets. + /// All raid targets. + /// A frozen dictionary keyed by item id (item-kind targets only). + internal static FrozenDictionary IndexRaidById(IReadOnlyList targets) => + targets.Where(t => t.Kind == RaidTargetKind.Item) + .GroupBy(t => int.Parse(t.Key, CultureInfo.InvariantCulture)) + .ToFrozenDictionary(g => g.Key, g => g.Last()); + private static ItemDataset Load() { var assembly = typeof(EmbeddedItemDatabase).Assembly; diff --git a/src/RustPlusBot.Features.ItemData/IItemDatabase.cs b/src/RustPlusBot.Features.ItemData/IItemDatabase.cs index a1842b58..dfc19d98 100644 --- a/src/RustPlusBot.Features.ItemData/IItemDatabase.cs +++ b/src/RustPlusBot.Features.ItemData/IItemDatabase.cs @@ -17,4 +17,9 @@ public interface IItemDatabase /// The raw user input. /// A match describing the outcome. ItemMatch Resolve(string query); + + /// Resolves a user query (target name or id) to a raid target. + /// The raw user input. + /// A match describing the outcome. + RaidMatch ResolveRaidTarget(string query); } diff --git a/src/RustPlusBot.Features.ItemData/Lookup/ItemLookup.cs b/src/RustPlusBot.Features.ItemData/Lookup/ItemLookup.cs index 86b85d89..a7d558de 100644 --- a/src/RustPlusBot.Features.ItemData/Lookup/ItemLookup.cs +++ b/src/RustPlusBot.Features.ItemData/Lookup/ItemLookup.cs @@ -1,4 +1,3 @@ -using System.Globalization; using RustPlusBot.Features.ItemData.Data; namespace RustPlusBot.Features.ItemData.Lookup; @@ -6,6 +5,9 @@ namespace RustPlusBot.Features.ItemData.Lookup; /// Pure name-or-id resolution. Exact name beats substring; ambiguous results are ranked and capped. public static class ItemLookup { + private static readonly IComparer ById = + Comparer.Create((a, b) => a.Id.CompareTo(b.Id)); + /// Resolves a user query to an item. /// The raw user input (name or id). /// Looks up an item by id. @@ -17,47 +19,12 @@ public static ItemMatch Resolve(string query, IReadOnlyList all, int cap = 10) { - ArgumentNullException.ThrowIfNull(byId); - ArgumentNullException.ThrowIfNull(all); - - var trimmed = (query ?? string.Empty).Trim(); - if (trimmed.Length == 0) - { - return new ItemMatch.NotFound(); - } - - if (int.TryParse(trimmed, NumberStyles.Integer, CultureInfo.InvariantCulture, out var id) - && byId(id) is { } byIdHit) - { - return new ItemMatch.Found(byIdHit); - } - - var exactMatches = all - .Where(i => string.Equals(i.Name, trimmed, StringComparison.OrdinalIgnoreCase)) - .OrderBy(i => i.Id) - .ToList(); - if (exactMatches.Count == 1) - { - return new ItemMatch.Found(exactMatches[0]); - } - - if (exactMatches.Count > 1) - { - return new ItemMatch.Ambiguous([.. exactMatches.Take(cap)]); - } - - var matches = all - .Where(i => i.Name.Contains(trimmed, StringComparison.OrdinalIgnoreCase)) - .OrderByDescending(i => i.Name.StartsWith(trimmed, StringComparison.OrdinalIgnoreCase)) - .ThenBy(i => i.Name.Length) - .ThenBy(i => i.Name, StringComparer.OrdinalIgnoreCase) - .ToList(); - - return matches.Count switch + var (kind, single, candidates) = NameMatcher.Resolve(query, byId, all, i => i.Name, ById, cap); + return kind switch { - 0 => new ItemMatch.NotFound(), - 1 => new ItemMatch.Found(matches[0]), - _ => new ItemMatch.Ambiguous([.. matches.Take(cap)]), + NameMatchKind.Found => new ItemMatch.Found(single!), + NameMatchKind.Ambiguous => new ItemMatch.Ambiguous(candidates), + _ => new ItemMatch.NotFound(), }; } } diff --git a/src/RustPlusBot.Features.ItemData/Lookup/NameMatcher.cs b/src/RustPlusBot.Features.ItemData/Lookup/NameMatcher.cs new file mode 100644 index 00000000..1f8bfb42 --- /dev/null +++ b/src/RustPlusBot.Features.ItemData/Lookup/NameMatcher.cs @@ -0,0 +1,76 @@ +using System.Globalization; + +namespace RustPlusBot.Features.ItemData.Lookup; + +/// The kind of outcome produced by . +internal enum NameMatchKind +{ + /// No candidate matched. + NotFound = 0, + + /// Exactly one candidate resolved. + Found = 1, + + /// Several candidates matched; present for disambiguation. + Ambiguous = 2, +} + +/// Pure, generic name-or-id resolution shared by the item and raid-target lookups. +/// Exact name beats substring; an exact-name collision is ranked by exactTieBreak. +internal static class NameMatcher +{ + public static (NameMatchKind Kind, T? Single, IReadOnlyList Candidates) Resolve( + string? query, + Func byId, + IReadOnlyList all, + Func name, + IComparer exactTieBreak, + int cap) + where T : class + { + ArgumentNullException.ThrowIfNull(byId); + ArgumentNullException.ThrowIfNull(all); + ArgumentNullException.ThrowIfNull(name); + ArgumentNullException.ThrowIfNull(exactTieBreak); + + var trimmed = (query ?? string.Empty).Trim(); + if (trimmed.Length == 0) + { + return (NameMatchKind.NotFound, null, []); + } + + if (int.TryParse(trimmed, NumberStyles.Integer, CultureInfo.InvariantCulture, out var id) + && byId(id) is { } byIdHit) + { + return (NameMatchKind.Found, byIdHit, []); + } + + var exact = all + .Where(i => string.Equals(name(i), trimmed, StringComparison.OrdinalIgnoreCase)) + .OrderBy(i => i, exactTieBreak) + .ToList(); + if (exact.Count == 1) + { + return (NameMatchKind.Found, exact[0], []); + } + + if (exact.Count > 1) + { + return (NameMatchKind.Ambiguous, null, [.. exact.Take(cap)]); + } + + var matches = all + .Where(i => name(i).Contains(trimmed, StringComparison.OrdinalIgnoreCase)) + .OrderByDescending(i => name(i).StartsWith(trimmed, StringComparison.OrdinalIgnoreCase)) + .ThenBy(i => name(i).Length) + .ThenBy(i => name(i), StringComparer.OrdinalIgnoreCase) + .ToList(); + + return matches.Count switch + { + 0 => (NameMatchKind.NotFound, null, []), + 1 => (NameMatchKind.Found, matches[0], []), + _ => (NameMatchKind.Ambiguous, null, [.. matches.Take(cap)]), + }; + } +} diff --git a/src/RustPlusBot.Features.ItemData/Lookup/RaidLookup.cs b/src/RustPlusBot.Features.ItemData/Lookup/RaidLookup.cs new file mode 100644 index 00000000..3cbe6ee0 --- /dev/null +++ b/src/RustPlusBot.Features.ItemData/Lookup/RaidLookup.cs @@ -0,0 +1,30 @@ +using RustPlusBot.Features.ItemData.Data; + +namespace RustPlusBot.Features.ItemData.Lookup; + +/// Pure name-or-id resolution over raid targets. Exact name beats substring. +public static class RaidLookup +{ + private static readonly IComparer ByName = + Comparer.Create((a, b) => string.CompareOrdinal(a.Name, b.Name)); + + /// Resolves a user query to a raid target. + /// The raw user input (target name or item id). + /// Looks up an item-kind target by id. + /// All raid targets, for name matching. + /// The maximum number of ambiguous candidates to return. + /// A describing the outcome. + public static RaidMatch Resolve(string query, + Func byId, + IReadOnlyList all, + int cap = 10) + { + var (kind, single, candidates) = NameMatcher.Resolve(query, byId, all, t => t.Name, ByName, cap); + return kind switch + { + NameMatchKind.Found => new RaidMatch.Found(single!), + NameMatchKind.Ambiguous => new RaidMatch.Ambiguous(candidates), + _ => new RaidMatch.NotFound(), + }; + } +} diff --git a/src/RustPlusBot.Features.ItemData/Lookup/RaidMatch.cs b/src/RustPlusBot.Features.ItemData/Lookup/RaidMatch.cs new file mode 100644 index 00000000..5673370c --- /dev/null +++ b/src/RustPlusBot.Features.ItemData/Lookup/RaidMatch.cs @@ -0,0 +1,23 @@ +using System.Diagnostics.CodeAnalysis; +using RustPlusBot.Features.ItemData.Data; + +namespace RustPlusBot.Features.ItemData.Lookup; + +/// The outcome of resolving a user query to a raid target. +[SuppressMessage("Design", "CA1034:Nested types should not be visible", + Justification = "Discriminated-union pattern: nested sealed records are the intended public surface.")] +public abstract record RaidMatch +{ + private RaidMatch() { } + + /// Exactly one raid target resolved. + /// The resolved target. + public sealed record Found(RaidTarget Target) : RaidMatch; + + /// Several targets matched; present candidates for disambiguation. + /// The candidate targets, capped and ranked. + public sealed record Ambiguous(IReadOnlyList Candidates) : RaidMatch; + + /// No target matched. + public sealed record NotFound : RaidMatch; +} diff --git a/src/RustPlusBot.Localization/Strings.fr.resx b/src/RustPlusBot.Localization/Strings.fr.resx index 4493beb2..ecf3f31c 100644 --- a/src/RustPlusBot.Localization/Strings.fr.resx +++ b/src/RustPlusBot.Localization/Strings.fr.resx @@ -261,6 +261,9 @@ {0} + + {0} + Vouliez-vous dire : {0} ? @@ -387,6 +390,9 @@ Temps de dégradation d'un objet + + Explosifs nécessaires pour détruire une cible + Afficher le nom, l'id, la pile et la disparition d'un objet @@ -417,6 +423,9 @@ Affiche le temps de dégradation d'un objet. + + Affiche les explosifs nécessaires pour détruire une cible. + Afficher ce message d'aide. diff --git a/src/RustPlusBot.Localization/Strings.resx b/src/RustPlusBot.Localization/Strings.resx index 4ff25275..e2e6d5ae 100644 --- a/src/RustPlusBot.Localization/Strings.resx +++ b/src/RustPlusBot.Localization/Strings.resx @@ -261,6 +261,9 @@ {0} + + {0} + Did you mean: {0}? @@ -387,6 +390,9 @@ Decay time for an item + + Explosives needed to destroy a target + Look up an item's name, id, stack, and despawn @@ -417,6 +423,9 @@ Show an item's decay time. + + Show the explosives needed to destroy a target. + Show this help message. diff --git a/tests/RustPlusBot.Features.Commands.Tests/CommandRegistrationTests.cs b/tests/RustPlusBot.Features.Commands.Tests/CommandRegistrationTests.cs index a18dcd17..c3d983b4 100644 --- a/tests/RustPlusBot.Features.Commands.Tests/CommandRegistrationTests.cs +++ b/tests/RustPlusBot.Features.Commands.Tests/CommandRegistrationTests.cs @@ -51,7 +51,7 @@ public void Dispatcher_and_handlers_resolve() using var scope = provider.CreateScope(); Assert.NotNull(scope.ServiceProvider.GetRequiredService()); var handlers = scope.ServiceProvider.GetServices().ToList(); - Assert.Equal(25, handlers.Count); + Assert.Equal(26, handlers.Count); Assert.Contains(handlers, h => h.Name == "mute"); Assert.Contains(handlers, h => h.Name == "pop"); Assert.Contains(handlers, h => h.Name == "time"); @@ -71,6 +71,7 @@ public void Dispatcher_and_handlers_resolve() Assert.Contains(handlers, h => h.Name == "afk"); Assert.Contains(handlers, h => h.Name == "decay"); Assert.Contains(handlers, h => h.Name == "upkeep"); + Assert.Contains(handlers, h => h.Name == "durability"); Assert.NotNull(scope.ServiceProvider.GetRequiredService()); Assert.NotNull(scope.ServiceProvider.GetRequiredService()); } diff --git a/tests/RustPlusBot.Features.Commands.Tests/Formatting/DurabilityFormatterTests.cs b/tests/RustPlusBot.Features.Commands.Tests/Formatting/DurabilityFormatterTests.cs new file mode 100644 index 00000000..453db1d2 --- /dev/null +++ b/tests/RustPlusBot.Features.Commands.Tests/Formatting/DurabilityFormatterTests.cs @@ -0,0 +1,76 @@ +using RustPlusBot.Features.Commands.Formatting; +using RustPlusBot.Features.ItemData; +using RustPlusBot.Features.ItemData.Data; +using RustPlusBot.Features.ItemData.Naming; + +namespace RustPlusBot.Features.Commands.Tests.Formatting; + +public sealed class DurabilityFormatterTests +{ + private readonly IItemNameResolver _names = new ItemDatabaseNameResolver(new EmbeddedItemDatabase()); + + [Fact] + public void DurabilityLine_SortsBySulfurAscending_AndAnnotatesSide() + { + var target = new RaidTarget("Stone Wall", "Stone Wall", RaidTargetKind.BuildingBlock, + [ + new RaidCost(1, "soft", null, 4, 18, 5600, 120), + new RaidCost(2, null, null, 2, 11.5, 4400, 120), + ]); + + var line = DurabilityLine.Format(target, _names); + + Assert.Contains("Stone Wall", line, StringComparison.Ordinal); + Assert.True( + line.IndexOf("4400", StringComparison.Ordinal) < line.IndexOf("5600", StringComparison.Ordinal), + "cheaper (4400 sulfur) cost should sort before 5600"); + Assert.Contains("(soft)", line, StringComparison.Ordinal); + } + + [Fact] + public void DurabilityLine_NullSulfur_SortsLast_AndOmitsSulfur() + { + var target = new RaidTarget("X", "X", RaidTargetKind.Item, + [ + new RaidCost(1, null, null, 1, null, null, 50), // no sulfur → sorts last + new RaidCost(2, null, null, 1, 10, 1400, 30), + ]); + + var line = DurabilityLine.Format(target, _names); + + // tool id 2 (1400 sulfur) appears before tool id 1 (no sulfur) + Assert.True(line.IndexOf("Item 2", StringComparison.Ordinal) < + line.IndexOf("Item 1", StringComparison.Ordinal)); + } + + [Fact] + public void DurabilityLine_RoundsQuantityUp_AndShowsCaption() + { + var target = new RaidTarget("X", "X", RaidTargetKind.Item, + [new RaidCost(1, null, "Semi-Automatic Rifle", 172.5, 70, 4325, null)]); + + var line = DurabilityLine.Format(target, _names); + + Assert.Contains("×173", line, StringComparison.Ordinal); // 172.5 rounded up + Assert.Contains("Semi-Automatic Rifle", line, StringComparison.Ordinal); + } + + [Fact] + public void DurabilityLine_RendersSubMinuteTimeInSeconds() + { + var target = new RaidTarget("Stone Wall", "Stone Wall", RaidTargetKind.BuildingBlock, + [new RaidCost(1, null, null, 2, 11.5, 4400, 120)]); + var line = DurabilityLine.Format(target, _names); + Assert.Contains("11.5s", line, StringComparison.Ordinal); + Assert.DoesNotContain("0m", line, StringComparison.Ordinal); + } + + [Fact] + public void DurabilityLine_RendersOverMinuteTimeAsMinutesAndSeconds() + { + var target = new RaidTarget("X", "X", RaidTargetKind.Item, + [new RaidCost(1, null, null, 46, 175.125, 5520, null)]); + var line = DurabilityLine.Format(target, _names); + Assert.Contains("2m 55s", line, StringComparison.Ordinal); + } +} diff --git a/tests/RustPlusBot.Features.Commands.Tests/Handlers/DurabilityHandlerTests.cs b/tests/RustPlusBot.Features.Commands.Tests/Handlers/DurabilityHandlerTests.cs new file mode 100644 index 00000000..446f18e2 --- /dev/null +++ b/tests/RustPlusBot.Features.Commands.Tests/Handlers/DurabilityHandlerTests.cs @@ -0,0 +1,37 @@ +using RustPlusBot.Features.Commands.Dispatching; +using RustPlusBot.Features.Commands.Handlers; +using RustPlusBot.Features.ItemData; +using RustPlusBot.Features.ItemData.Naming; +using RustPlusBot.Localization; + +namespace RustPlusBot.Features.Commands.Tests.Handlers; + +public sealed class DurabilityHandlerTests +{ + private readonly IItemDatabase _db = new EmbeddedItemDatabase(); + private readonly ILocalizer _loc = new ResxLocalizer(); + private readonly IItemNameResolver _names = new ItemDatabaseNameResolver(new EmbeddedItemDatabase()); + + private static CommandContext Ctx(params string[] args) => new(1, Guid.NewGuid(), "en", 99, "Caller", args); + + [Fact] + public void Name_is_durability() + => Assert.Equal("durability", new DurabilityCommandHandler(_db, _names, _loc).Name); + + [Fact] + public async Task Found_returnsRaidCosts() + { + var reply = await new DurabilityCommandHandler(_db, _names, _loc) + .ExecuteAsync(Ctx("Stone Wall"), CancellationToken.None); + Assert.Contains("Stone Wall", reply, StringComparison.Ordinal); + Assert.Contains("sulfur", reply, StringComparison.OrdinalIgnoreCase); + } + + [Fact] + public async Task NotFound_returnsMessage() + { + var reply = await new DurabilityCommandHandler(_db, _names, _loc) + .ExecuteAsync(Ctx("zzzzz"), CancellationToken.None); + Assert.Contains("zzzzz", reply, StringComparison.Ordinal); + } +} diff --git a/tests/RustPlusBot.Features.Commands.Tests/Help/CommandHelpCatalogTests.cs b/tests/RustPlusBot.Features.Commands.Tests/Help/CommandHelpCatalogTests.cs index 8df690c0..959380fc 100644 --- a/tests/RustPlusBot.Features.Commands.Tests/Help/CommandHelpCatalogTests.cs +++ b/tests/RustPlusBot.Features.Commands.Tests/Help/CommandHelpCatalogTests.cs @@ -5,12 +5,12 @@ namespace RustPlusBot.Features.Commands.Tests.Help; public sealed class CommandHelpCatalogTests { - /// The 19 registered in-game handler names (see AddCommands / CommandRegistrationTests). + /// The 20 registered in-game handler names (see AddCommands / CommandRegistrationTests). private static readonly string[] HandlerNames = [ "mute", "unmute", "uptime", "pop", "wipe", "time", "online", "offline", "team", "steamid", "alive", "afk", "prox", - "item", "recycle", "craft", "research", "decay", "upkeep", + "item", "recycle", "craft", "research", "decay", "upkeep", "durability", ]; [Fact] diff --git a/tests/RustPlusBot.Features.ItemData.Tests/EmbeddedItemDatabaseTests.cs b/tests/RustPlusBot.Features.ItemData.Tests/EmbeddedItemDatabaseTests.cs index 5ce888d8..5e75f4e6 100644 --- a/tests/RustPlusBot.Features.ItemData.Tests/EmbeddedItemDatabaseTests.cs +++ b/tests/RustPlusBot.Features.ItemData.Tests/EmbeddedItemDatabaseTests.cs @@ -1,6 +1,7 @@ using System.Text; using RustPlusBot.Features.ItemData; using RustPlusBot.Features.ItemData.Data; +using RustPlusBot.Features.ItemData.Lookup; namespace RustPlusBot.Features.ItemData.Tests; @@ -84,4 +85,18 @@ public void Sources_DecayAndUpkeep_ArePopulated() Assert.Equal(new DateOnly(2024, 9, 7), _db.Sources.DecayAsOf); Assert.Equal(new DateOnly(2024, 9, 7), _db.Sources.UpkeepAsOf); } + + [Fact] + public void ResolveRaidTarget_StoneWall_ListsTimedExplosiveCharge() + { + var found = Assert.IsType(_db.ResolveRaidTarget("Stone Wall")); + Assert.Equal("Stone Wall", found.Target.Name); + Assert.Contains(found.Target.Costs, c => c.ToolId == 1248356124); // Timed Explosive Charge (C4) + } + + [Fact] + public void Sources_DurabilityAsOf_IsPopulated() + { + Assert.Equal(new DateOnly(2024, 9, 7), _db.Sources.DurabilityAsOf); + } } diff --git a/tests/RustPlusBot.Features.ItemData.Tests/ItemDatasetTests.cs b/tests/RustPlusBot.Features.ItemData.Tests/ItemDatasetTests.cs index 6485a9e1..21365d0f 100644 --- a/tests/RustPlusBot.Features.ItemData.Tests/ItemDatasetTests.cs +++ b/tests/RustPlusBot.Features.ItemData.Tests/ItemDatasetTests.cs @@ -28,4 +28,19 @@ public void ItemRecord_CarriesDecayAndUpkeep() Assert.Equal(8, record.Upkeep.Entries[0].QuantityMin); Assert.Equal(25, record.Upkeep.Entries[0].QuantityMax); } + + [Fact] + public void RaidTarget_CarriesExplosiveCosts() + { + var target = new RaidTarget("Stone Wall", "Stone Wall", RaidTargetKind.BuildingBlock, + [ + new RaidCost(1248356124, "both", null, 2, 11.5, 4400, 120), + ]); + + Assert.Equal(RaidTargetKind.BuildingBlock, target.Kind); + var cost = Assert.Single(target.Costs); + Assert.Equal(1248356124, cost.ToolId); + Assert.Equal(4400, cost.Sulfur); + Assert.Equal(2, cost.Quantity); + } } diff --git a/tests/RustPlusBot.Features.ItemData.Tests/RaidLookupTests.cs b/tests/RustPlusBot.Features.ItemData.Tests/RaidLookupTests.cs new file mode 100644 index 00000000..ea9b4b94 --- /dev/null +++ b/tests/RustPlusBot.Features.ItemData.Tests/RaidLookupTests.cs @@ -0,0 +1,56 @@ +using RustPlusBot.Features.ItemData.Data; +using RustPlusBot.Features.ItemData.Lookup; + +namespace RustPlusBot.Features.ItemData.Tests; + +public sealed class RaidLookupTests +{ + private static readonly RaidTarget Wall = new("Stone Wall", "Stone Wall", RaidTargetKind.BuildingBlock, []); + + private static readonly RaidTarget Door = new("Sheet Metal Door", "Sheet Metal Door", RaidTargetKind.BuildingBlock, + []); + + private static readonly RaidTarget Tc = new("100", "Tool Cupboard", RaidTargetKind.Item, []); + private static readonly IReadOnlyList All = [Wall, Door, Tc]; + + private static RaidTarget? ById(int id) => + All.FirstOrDefault(t => t.Kind == RaidTargetKind.Item && int.TryParse(t.Key, out var k) && k == id); + + private static RaidMatch Resolve(string q) => RaidLookup.Resolve(q, ById, All); + + [Fact] + public void NumericInput_ResolvesItemTargetById() + { + var found = Assert.IsType(Resolve("100")); + Assert.Equal("Tool Cupboard", found.Target.Name); + } + + [Fact] + public void ExactBlockName_Found() + { + var found = Assert.IsType(Resolve("stone wall")); + Assert.Equal("Stone Wall", found.Target.Name); + } + + [Fact] + public void Substring_Found() + { + var found = Assert.IsType(Resolve("cupboard")); + Assert.Equal("Tool Cupboard", found.Target.Name); + } + + [Fact] + public void MultipleSubstring_Ambiguous() + { + var amb = Assert.IsType(Resolve("o")); // Stone, Door, Tool all contain 'o' + Assert.True(amb.Candidates.Count >= 2); + } + + [Fact] + public void NoMatch_NotFound() => Assert.IsType(Resolve("zzzzz")); + + [Theory] + [InlineData("")] + [InlineData(" ")] + public void EmptyOrWhitespace_NotFound(string q) => Assert.IsType(Resolve(q)); +} diff --git a/tests/RustPlusBot.ItemData.Generator.Tests/DatasetValidatorTests.cs b/tests/RustPlusBot.ItemData.Generator.Tests/DatasetValidatorTests.cs index d668d6d7..834e913f 100644 --- a/tests/RustPlusBot.ItemData.Generator.Tests/DatasetValidatorTests.cs +++ b/tests/RustPlusBot.ItemData.Generator.Tests/DatasetValidatorTests.cs @@ -8,12 +8,16 @@ public sealed class DatasetValidatorTests { private static ItemDataset Good() => new(1, new DatasetSources(new(2026, 4, 8), new(2024, 9, 7), new(2024, 9, 7), new(2024, 9, 7), new(2024, 9, 7), - new(2024, 9, 7)), + new(2024, 9, 7), new(2024, 9, 7)), [ new ItemRecord(1, "AK-47", 1, 3600, new RecycleYield([new YieldEntry(2, 4, 1.0)]), null, null, null, null), new ItemRecord(2, "Metal Fragments", 1000, null, null, null, null, null, null), - ]); + ], + []); + + private static ItemDataset WithRaid(params RaidTarget[] raid) => + new(3, Good().Sources, Good().Items, raid); /// A dataset with all referential constraints satisfied should produce no errors. [Fact] @@ -36,10 +40,11 @@ public void TooFewItems_isError() public void UnresolvableYieldId_isError() { var bad = new ItemDataset(1, Good().Sources, - [ - new ItemRecord(1, "AK-47", 1, null, - new RecycleYield([new YieldEntry(99999, 4, 1.0)]), null, null, null, null), - ]); + [ + new ItemRecord(1, "AK-47", 1, null, + new RecycleYield([new YieldEntry(99999, 4, 1.0)]), null, null, null, null), + ], + []); var errors = DatasetValidator.Validate(bad, new ValidationOptions(MinItemCount: 1)); Assert.Contains(errors, e => e.Contains("99999", StringComparison.Ordinal)); } @@ -49,10 +54,11 @@ public void UnresolvableYieldId_isError() public void UnresolvableCraftIngredientId_isError() { var bad = new ItemDataset(1, Good().Sources, - [ - new ItemRecord(1, "AK-47", 1, null, null, - new CraftRecipe([new Ingredient(88888, 100)], 30.0, 3), null, null, null), - ]); + [ + new ItemRecord(1, "AK-47", 1, null, null, + new CraftRecipe([new Ingredient(88888, 100)], 30.0, 3), null, null, null), + ], + []); var errors = DatasetValidator.Validate(bad, new ValidationOptions(MinItemCount: 1)); Assert.Contains(errors, e => e.Contains("88888", StringComparison.Ordinal)); } @@ -62,10 +68,11 @@ public void UnresolvableCraftIngredientId_isError() public void UnresolvableUpkeepId_isError() { var bad = new ItemDataset(2, Good().Sources, - [ - new ItemRecord(1, "Wooden Door", 1, null, null, null, null, null, - new UpkeepCost([new UpkeepEntry(77777, 8, 25)])), - ]); + [ + new ItemRecord(1, "Wooden Door", 1, null, null, null, null, null, + new UpkeepCost([new UpkeepEntry(77777, 8, 25)])), + ], + []); var errors = DatasetValidator.Validate(bad, new ValidationOptions(MinItemCount: 1)); Assert.Contains(errors, e => e.Contains("77777", StringComparison.Ordinal)); } @@ -75,10 +82,11 @@ public void UnresolvableUpkeepId_isError() public void UpkeepMinGreaterThanMax_isError() { var bad = new ItemDataset(2, Good().Sources, - [ - new ItemRecord(1, "Wooden Door", 1, null, null, null, null, null, - new UpkeepCost([new UpkeepEntry(1, 25, 8)])), - ]); + [ + new ItemRecord(1, "Wooden Door", 1, null, null, null, null, null, + new UpkeepCost([new UpkeepEntry(1, 25, 8)])), + ], + []); var errors = DatasetValidator.Validate(bad, new ValidationOptions(MinItemCount: 1)); Assert.Contains(errors, e => e.Contains("upkeep", StringComparison.OrdinalIgnoreCase)); } @@ -88,11 +96,40 @@ public void UpkeepMinGreaterThanMax_isError() public void NegativeDecay_isError() { var bad = new ItemDataset(2, Good().Sources, - [ - new ItemRecord(1, "Stone Barricade", 1, null, null, null, null, - new DecayInfo(-900, null, null, null, 100), null), - ]); + [ + new ItemRecord(1, "Stone Barricade", 1, null, null, null, null, + new DecayInfo(-900, null, null, null, 100), null), + ], + []); var errors = DatasetValidator.Validate(bad, new ValidationOptions(MinItemCount: 1)); Assert.Contains(errors, e => e.Contains("decay", StringComparison.OrdinalIgnoreCase)); } + + /// A raid cost that references an unknown tool id should produce an error. + [Fact] + public void RaidCost_UnknownToolId_isError() + { + var bad = WithRaid(new RaidTarget("Stone Wall", "Stone Wall", RaidTargetKind.BuildingBlock, + [new RaidCost(424242, null, null, 2, 11.5, 4400, 120)])); + var errors = DatasetValidator.Validate(bad, new ValidationOptions(MinItemCount: 1)); + Assert.Contains(errors, e => e.Contains("424242", StringComparison.Ordinal)); + } + + /// A raid cost with a non-positive quantity should produce an error. + [Fact] + public void RaidCost_NonPositiveQuantity_isError() + { + var bad = WithRaid(new RaidTarget("Stone Wall", "Stone Wall", RaidTargetKind.BuildingBlock, + [new RaidCost(1, null, null, 0, 1, 1, null)])); + var errors = DatasetValidator.Validate(bad, new ValidationOptions(MinItemCount: 1)); + Assert.Contains(errors, e => e.Contains("quantity", StringComparison.OrdinalIgnoreCase)); + } + + /// Too few raid targets should produce an error when a floor is set. + [Fact] + public void TooFewRaidTargets_isError() + { + var errors = DatasetValidator.Validate(Good(), new ValidationOptions(MinItemCount: 1, MinRaidTargetCount: 300)); + Assert.Contains(errors, e => e.Contains("raid target count", StringComparison.OrdinalIgnoreCase)); + } } diff --git a/tests/RustPlusBot.ItemData.Generator.Tests/OfflineDurabilitySourceTests.cs b/tests/RustPlusBot.ItemData.Generator.Tests/OfflineDurabilitySourceTests.cs new file mode 100644 index 00000000..b69bdb1e --- /dev/null +++ b/tests/RustPlusBot.ItemData.Generator.Tests/OfflineDurabilitySourceTests.cs @@ -0,0 +1,70 @@ +using RustPlusBot.Features.ItemData.Data; +using RustPlusBot.ItemData.Generator.Sources; + +namespace RustPlusBot.ItemData.Generator.Tests; + +public sealed class OfflineDurabilitySourceTests +{ + private static OfflineDurabilitySource SourceWith(string json) + { + var path = Path.GetTempFileName(); + File.WriteAllText(path, json); + return new OfflineDurabilitySource(path); + } + + [Fact] + public void LoadRaidTargets_KeepsExplosiveOnly_AndProjectsAllThreeKinds() + { + const string json = """ + { + "items": { "100": [ + {"group":"explosive","which":null,"toolId":"1248356124","caption":null,"quantity":1,"time":10,"fuel":60,"sulfur":2200}, + {"group":"guns","which":null,"toolId":"99","caption":"AK","quantity":500,"time":120,"fuel":null,"sulfur":null} + ]}, + "buildingBlocks": { "Stone Wall": [ + {"group":"explosive","which":"soft","toolId":"1248356124","caption":null,"quantity":2,"time":11.5,"fuel":120,"sulfur":4400} + ]}, + "other": { "Bradley APC": [ + {"group":"explosive","which":null,"toolId":"-742865266","caption":null,"quantity":7,"time":30,"fuel":null,"sulfur":9800} + ]} + } + """; + var names = new Dictionary + { + [100] = "Tool Cupboard", [1248356124] = "Timed Explosive Charge", [-742865266] = "Rocket", + }; + + var targets = SourceWith(json).LoadRaidTargets(names); + + var tc = Assert.Single(targets, t => t.Kind == RaidTargetKind.Item); + Assert.Equal("Tool Cupboard", tc.Name); + Assert.Equal("100", tc.Key); + var cost = Assert.Single(tc.Costs); // the "guns" row is filtered out + Assert.Equal(1248356124, cost.ToolId); + Assert.Equal(2200, cost.Sulfur); + + var wall = Assert.Single(targets, t => t.Kind == RaidTargetKind.BuildingBlock); + Assert.Equal("Stone Wall", wall.Name); + Assert.Equal("soft", Assert.Single(wall.Costs).Side); + + Assert.Single(targets, t => t.Kind == RaidTargetKind.Vehicle); + } + + [Fact] + public void LoadRaidTargets_DropsItemWithNoName() + { + const string json = + """{"items":{"999":[{"group":"explosive","which":null,"caption":null,"toolId":"1","quantity":1,"time":1,"sulfur":1,"fuel":null}]}}"""; + var targets = SourceWith(json).LoadRaidTargets(new Dictionary()); + Assert.Empty(targets); + } + + [Fact] + public void LoadRaidTargets_DropsTargetWithNoExplosiveRows() + { + const string json = + """{"buildingBlocks":{"Twig Wall":[{"group":"melee","which":null,"caption":null,"toolId":"1","quantity":1,"time":1,"sulfur":null,"fuel":null}]}}"""; + var targets = SourceWith(json).LoadRaidTargets(new Dictionary()); + Assert.Empty(targets); + } +} diff --git a/tests/RustPlusBot.Localization.Tests/StringsResourceParityTests.cs b/tests/RustPlusBot.Localization.Tests/StringsResourceParityTests.cs index 75905741..edd48e32 100644 --- a/tests/RustPlusBot.Localization.Tests/StringsResourceParityTests.cs +++ b/tests/RustPlusBot.Localization.Tests/StringsResourceParityTests.cs @@ -42,6 +42,6 @@ public void English_covers_every_french_key() [Fact] public void Catalog_has_expected_key_count() { - Assert.Equal(238, EnglishKeys().Count); + Assert.Equal(241, EnglishKeys().Count); } } diff --git a/tools/RustPlusBot.ItemData.Generator/Program.cs b/tools/RustPlusBot.ItemData.Generator/Program.cs index a749fad9..cc5b8bd1 100644 --- a/tools/RustPlusBot.ItemData.Generator/Program.cs +++ b/tools/RustPlusBot.ItemData.Generator/Program.cs @@ -14,6 +14,7 @@ internal static class Program private static readonly DateOnly ResearchAsOf = new(2024, 9, 7); private static readonly DateOnly DecayAsOf = new(2024, 9, 7); private static readonly DateOnly UpkeepAsOf = new(2024, 9, 7); + private static readonly DateOnly DurabilityAsOf = new(2024, 9, 7); private static readonly JsonSerializerOptions JsonOptions = new(JsonSerializerDefaults.Web) { @@ -65,6 +66,8 @@ internal static int Main(string[] args) Path.Combine(rustplusDir, "rustlabsResearchData.json"), Path.Combine(rustplusDir, "rustlabsDecayData.json"), Path.Combine(rustplusDir, "rustlabsUpkeepData.json")); + var durabilitySource = new OfflineDurabilitySource( + Path.Combine(rustplusDir, "rustlabsDurabilityData.json")); var names = namesSource.LoadNames(); Console.WriteLine($"Loaded {names.Count} names from items.json"); @@ -76,6 +79,8 @@ internal static int Main(string[] args) var researchCosts = rustLabsSource.LoadResearchCosts(); var decayInfos = rustLabsSource.LoadDecay(); var upkeepCosts = rustLabsSource.LoadUpkeep(); + var raidTargets = durabilitySource.LoadRaidTargets(names); + Console.WriteLine($"Loaded {raidTargets.Count} raid targets"); var nameIds = new HashSet(names.Keys); @@ -109,11 +114,12 @@ internal static int Main(string[] args) .ToList(); var dataset = new ItemDataset( - 2, - new DatasetSources(NamesAsOf, RecycleAsOf, CraftAsOf, ResearchAsOf, DecayAsOf, UpkeepAsOf), - items); + 3, + new DatasetSources(NamesAsOf, RecycleAsOf, CraftAsOf, ResearchAsOf, DecayAsOf, UpkeepAsOf, DurabilityAsOf), + items, + raidTargets); - var validationOptions = new ValidationOptions(MinItemCount: minItems); + var validationOptions = new ValidationOptions(MinItemCount: minItems, MinRaidTargetCount: 300); var errors = DatasetValidator.Validate(dataset, validationOptions); if (errors.Count > 0) { diff --git a/tools/RustPlusBot.ItemData.Generator/README.md b/tools/RustPlusBot.ItemData.Generator/README.md index 89ee00a6..4f51d324 100644 --- a/tools/RustPlusBot.ItemData.Generator/README.md +++ b/tools/RustPlusBot.ItemData.Generator/README.md @@ -2,7 +2,7 @@ A maintainer CLI that regenerates the embedded Rust item dataset (`src/RustPlusBot.Features.ItemData/Data/item-data.json`) consumed by the bot's -`/item`, `/recycle`, `/craft`, `/research`, `/decay`, and `/upkeep` calculators. +`/item`, `/recycle`, `/craft`, `/research`, `/decay`, `/upkeep`, and `/durability` calculators. This tool is **not** part of the running bot — it is referenced by nothing in the application graph. It exists so the bundled item data can be refreshed when @@ -37,14 +37,17 @@ garbage** if the upstream shape drifts. | `rustlabsResearchData.json` | research scrap cost | | `rustlabsDecayData.json` | decay time + HP | | `rustlabsUpkeepData.json` | upkeep cost (resource + quantity range) | + | `rustlabsDurabilityData.json` | raid cost (explosives only — trimmed) | 2. Projects them into our own typed schema (`ItemDataset` / `ItemRecord` / …, defined in `RustPlusBot.Features.ItemData`), keyed by item id, with calculator data inlined per item (null where an item has none). 3. **Validates** the result (`DatasetValidator`): a minimum item-count floor, - that every recycle-yield / craft-ingredient / upkeep-cost id resolves to a - known item, that upkeep quantity ranges are well-formed (`min <= max`), and - that decay values are non-negative. + a minimum raid-target count floor, that every recycle-yield / + craft-ingredient / upkeep-cost id resolves to a known item, that upkeep + quantity ranges are well-formed (`min <= max`), that decay values are + non-negative, and that every raid cost has a positive quantity and a valid + tool-item id. 4. On any validation error, prints the errors to stderr and exits non-zero **without writing** — the existing good bundle is never clobbered. 5. On success, writes the dataset as indented JSON and exits 0. @@ -88,7 +91,8 @@ tests assert known items resolve correctly. The source dates stamped into the dataset are currently hard-coded constants in [`Program.cs`](Program.cs) (`NamesAsOf`, `RecycleAsOf`, `CraftAsOf`, -`ResearchAsOf`). Update them when you refresh from newer upstream data. +`ResearchAsOf`, `DecayAsOf`, `UpkeepAsOf`, `DurabilityAsOf`). Update them when +you refresh from newer upstream data. ## Notes @@ -97,6 +101,11 @@ The source dates stamped into the dataset are currently hard-coded constants in transforms a local rustplusplus checkout. - Recycle data covers the standard **recycler** only; safe-zone recycler and shredder yields are out of scope for this slice. +- Durability data is **trimmed to the `explosive` tool group** during the + transform (`OfflineDurabilitySource`) and projected into `RaidTargets` + (item / building-block / vehicle). The raw source (`rustlabsDurabilityData.json`) + is ~19 MB and is **never bundled** — only the projected, explosive-only rows + are written into `item-data.json`. ## Attribution diff --git a/tools/RustPlusBot.ItemData.Generator/Sources/IDurabilitySource.cs b/tools/RustPlusBot.ItemData.Generator/Sources/IDurabilitySource.cs new file mode 100644 index 00000000..8dd78595 --- /dev/null +++ b/tools/RustPlusBot.ItemData.Generator/Sources/IDurabilitySource.cs @@ -0,0 +1,12 @@ +using RustPlusBot.Features.ItemData.Data; + +namespace RustPlusBot.ItemData.Generator.Sources; + +/// Provides raid-target durability data (explosive costs) from RustLabs. +internal interface IDurabilitySource +{ + /// Loads raid targets, resolving item-kind target names via . + /// Item id → display name, for the item-kind section. + /// Every target with at least one explosive cost. + IReadOnlyList LoadRaidTargets(IReadOnlyDictionary names); +} diff --git a/tools/RustPlusBot.ItemData.Generator/Sources/OfflineDurabilitySource.cs b/tools/RustPlusBot.ItemData.Generator/Sources/OfflineDurabilitySource.cs new file mode 100644 index 00000000..b73d4212 --- /dev/null +++ b/tools/RustPlusBot.ItemData.Generator/Sources/OfflineDurabilitySource.cs @@ -0,0 +1,112 @@ +using System.Globalization; +using System.Text.Json; +using RustPlusBot.Features.ItemData.Data; + +namespace RustPlusBot.ItemData.Generator.Sources; + +/// Reads raid durability data from the offline RustLabs JSON file, keeping only explosives. +/// Path to the rustlabsDurabilityData.json file. +internal sealed class OfflineDurabilitySource(string DurabilityFilePath) : IDurabilitySource +{ + private const string RaidGroup = "explosive"; + + /// + public IReadOnlyList LoadRaidTargets(IReadOnlyDictionary names) + { + ArgumentNullException.ThrowIfNull(names); + + using var stream = File.OpenRead(DurabilityFilePath); + using var doc = JsonDocument.Parse(stream); + var root = doc.RootElement; + + var targets = new List(); + AddSection(root, "items", RaidTargetKind.Item, names, targets); + AddSection(root, "buildingBlocks", RaidTargetKind.BuildingBlock, names, targets); + AddSection(root, "other", RaidTargetKind.Vehicle, names, targets); + return targets; + } + + private static void AddSection(JsonElement root, + string section, + RaidTargetKind kind, + IReadOnlyDictionary names, + List into) + { + if (!root.TryGetProperty(section, out var sectionEl) || sectionEl.ValueKind != JsonValueKind.Object) + { + return; + } + + foreach (var prop in sectionEl.EnumerateObject()) + { + string key; + string name; + if (kind == RaidTargetKind.Item) + { + if (!int.TryParse(prop.Name, NumberStyles.Integer, CultureInfo.InvariantCulture, out var id) || + !names.TryGetValue(id, out var itemName)) + { + continue; // orphan id with no item name — drop + } + + key = prop.Name; + name = itemName; + } + else + { + key = prop.Name; + name = prop.Name; + } + + var costs = ReadCosts(prop.Value); + if (costs.Count > 0) + { + into.Add(new RaidTarget(key, name, kind, costs)); + } + } + } + + private static List ReadCosts(JsonElement rows) + { + var costs = new List(); + foreach (var row in rows.EnumerateArray()) + { + if (ReadString(row, "group") != RaidGroup) + { + continue; + } + + var toolStr = ReadString(row, "toolId"); + if (toolStr is null || + !int.TryParse(toolStr, NumberStyles.Integer, CultureInfo.InvariantCulture, out var toolId)) + { + continue; + } + + if (ReadDouble(row, "quantity") is not { } quantity) + { + continue; + } + + costs.Add(new RaidCost( + toolId, + ReadString(row, "which"), + ReadString(row, "caption"), + quantity, + ReadDouble(row, "time"), + ReadInt(row, "sulfur"), + ReadInt(row, "fuel"))); + } + + return costs; + } + + private static string? ReadString(JsonElement el, string name) => + el.TryGetProperty(name, out var p) && p.ValueKind == JsonValueKind.String ? p.GetString() : null; + + private static int? ReadInt(JsonElement el, string name) => + el.TryGetProperty(name, out var p) && p.ValueKind == JsonValueKind.Number ? p.GetInt32() : null; + + private static double? ReadDouble(JsonElement el, string name) => + el.TryGetProperty(name, out var p) && p.ValueKind == JsonValueKind.Number ? p.GetDouble() : null; +} diff --git a/tools/RustPlusBot.ItemData.Generator/Validation/DatasetValidator.cs b/tools/RustPlusBot.ItemData.Generator/Validation/DatasetValidator.cs index 2475cd61..0c83b0f8 100644 --- a/tools/RustPlusBot.ItemData.Generator/Validation/DatasetValidator.cs +++ b/tools/RustPlusBot.ItemData.Generator/Validation/DatasetValidator.cs @@ -4,7 +4,8 @@ namespace RustPlusBot.ItemData.Generator.Validation; /// Options that control dataset validation thresholds. /// The minimum number of items the dataset must contain. -internal sealed record ValidationOptions(int MinItemCount); +/// The minimum number of raid targets the dataset must contain. +internal sealed record ValidationOptions(int MinItemCount, int MinRaidTargetCount = 0); /// Validates an for structural integrity. internal static class DatasetValidator @@ -74,6 +75,28 @@ public static IReadOnlyList Validate(ItemDataset dataset, ValidationOpti } } + var raid = dataset.RaidTargets ?? []; + if (raid.Count < options.MinRaidTargetCount) + { + errors.Add($"raid target count {raid.Count} below minimum {options.MinRaidTargetCount}"); + } + + foreach (var target in raid) + { + foreach (var cost in target.Costs) + { + if (!ids.Contains(cost.ToolId)) + { + errors.Add($"raid target {target.Name}: cost references unknown tool id {cost.ToolId}"); + } + + if (cost.Quantity <= 0) + { + errors.Add($"raid target {target.Name}: non-positive quantity {cost.Quantity}"); + } + } + } + return errors; } }