fix: Codegens tools (#1354)
This commit is contained in:
parent
5c99d0cb38
commit
bf6da39176
61 changed files with 1827 additions and 2266 deletions
|
|
@ -1,30 +1,29 @@
|
|||
using ModernUO.Serialization;
|
||||
using Server.Engines.Craft;
|
||||
|
||||
namespace Server.Items
|
||||
namespace Server.Items;
|
||||
|
||||
[Flippable(0x1EB8, 0x1EB9)]
|
||||
[SerializationGenerator(0, false)]
|
||||
public partial class TinkerTools : BaseTool
|
||||
{
|
||||
[Flippable(0x1EB8, 0x1EB9)]
|
||||
[SerializationGenerator(0, false)]
|
||||
public partial class TinkerTools : BaseTool
|
||||
{
|
||||
[Constructible]
|
||||
public TinkerTools() : base(0x1EB8) => Weight = 1.0;
|
||||
[Constructible]
|
||||
public TinkerTools() : base(0x1EB8) => Weight = 1.0;
|
||||
|
||||
[Constructible]
|
||||
public TinkerTools(int uses) : base(uses, 0x1EB8) => Weight = 1.0;
|
||||
[Constructible]
|
||||
public TinkerTools(int uses) : base(uses, 0x1EB8) => Weight = 1.0;
|
||||
|
||||
public override CraftSystem CraftSystem => DefTinkering.CraftSystem;
|
||||
}
|
||||
|
||||
[SerializationGenerator(0, false)]
|
||||
public partial class TinkersTools : BaseTool
|
||||
{
|
||||
[Constructible]
|
||||
public TinkersTools() : base(0x1EBC) => Weight = 1.0;
|
||||
|
||||
[Constructible]
|
||||
public TinkersTools(int uses) : base(uses, 0x1EBC) => Weight = 1.0;
|
||||
|
||||
public override CraftSystem CraftSystem => DefTinkering.CraftSystem;
|
||||
}
|
||||
public override CraftSystem CraftSystem => DefTinkering.CraftSystem;
|
||||
}
|
||||
|
||||
[SerializationGenerator(0, false)]
|
||||
public partial class TinkersTools : BaseTool
|
||||
{
|
||||
[Constructible]
|
||||
public TinkersTools() : base(0x1EBC) => Weight = 1.0;
|
||||
|
||||
[Constructible]
|
||||
public TinkersTools(int uses) : base(uses, 0x1EBC) => Weight = 1.0;
|
||||
|
||||
public override CraftSystem CraftSystem => DefTinkering.CraftSystem;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue