74 lines
2.7 KiB
C#
74 lines
2.7 KiB
C#
namespace Eco.Mods.TechTree
|
|
{
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using Eco.Gameplay.Components;
|
|
using Eco.Gameplay.Components.Auth;
|
|
using Eco.Gameplay.DynamicValues;
|
|
using Eco.Gameplay.Items;
|
|
using Eco.Gameplay.Objects;
|
|
using Eco.Gameplay.Players;
|
|
using Eco.Gameplay.Skills;
|
|
using Eco.Gameplay.Systems.TextLinks;
|
|
using Eco.Shared.Math;
|
|
using Eco.Shared.Networking;
|
|
using Eco.Shared.Localization;
|
|
using Eco.Shared.Serialization;
|
|
using Eco.Shared.Utils;
|
|
|
|
[Serialized]
|
|
[Weight(15000)]
|
|
public class WoodCartItem : WorldObjectItem<WoodCartObject>
|
|
{
|
|
public override string FriendlyName { get { return "Wood Cart"; } }
|
|
public override string Description { get { return "Small wheelbarrow for hauling minimal loads."; } }
|
|
}
|
|
|
|
[RequiresSkill(typeof(PrimitiveMechanicsSkill), 1)]
|
|
public class WoodCartRecipe : Recipe
|
|
{
|
|
public WoodCartRecipe()
|
|
{
|
|
this.Products = new CraftingElement[]
|
|
{
|
|
new CraftingElement<WoodCartItem>(),
|
|
};
|
|
this.Ingredients = new CraftingElement[]
|
|
{
|
|
new CraftingElement<BoardItem>(typeof(PrimitiveMechanicsEfficiencySkill), 50, PrimitiveMechanicsEfficiencySkill.MultiplicativeStrategy),
|
|
};
|
|
this.CraftMinutes = new ConstantValue(5);
|
|
|
|
this.Initialize("Wood Cart", typeof(WoodCartRecipe));
|
|
CraftingComponent.AddRecipe(typeof(WainwrightTableObject), this);
|
|
}
|
|
}
|
|
[Serialized]
|
|
[RequireComponent(typeof(StandaloneAuthComponent))]
|
|
[RequireComponent(typeof(PublicStorageComponent))]
|
|
[RequireComponent(typeof(MovableLinkComponent))]
|
|
[RequireComponent(typeof(VehicleComponent))]
|
|
[RequireComponent(typeof(TailingsReportComponent))]
|
|
public class WoodCartObject : PhysicsWorldObject
|
|
{
|
|
private static Dictionary<Type, float> roadEfficiency = new Dictionary<Type, float>()
|
|
{
|
|
{ typeof(DirtRoadBlock), 1.2f }, { typeof(DirtRoadWorldObjectBlock), 1.2f },
|
|
{ typeof(StoneRoadBlock), 1.4f }, { typeof(StoneRoadWorldObjectBlock), 1.4f },
|
|
{ typeof(AsphaltRoadBlock), 1.6f }, { typeof(AsphaltRoadWorldObjectBlock), 1.6f }
|
|
};
|
|
public override string FriendlyName { get { return "Wood Cart"; } }
|
|
|
|
|
|
private WoodCartObject() { }
|
|
|
|
protected override void Initialize()
|
|
{
|
|
base.Initialize();
|
|
|
|
this.GetComponent<PublicStorageComponent>().Initialize(12, 1500000);
|
|
this.GetComponent<VehicleComponent>().Initialize(10, 1, roadEfficiency);
|
|
this.GetComponent<VehicleComponent>().HumanPowered(1);
|
|
}
|
|
}
|
|
} |