ace/Source/ACE.Database/Models/World/RecipeRequirementsString.cs
Ty Conner ab07d9f369
Add Crafting Framework to ACEmulator (#776)
* Add New Crafting Tables to World Database

* Scaffold the new crafting tables

* Update Craft Table

* Crafting WIP

* Some WIP cleanup

* Update PR db override

* Update Scaffolding

* Add table includes to Cookbook

* More Craft WIP

* Craft clean up

* Basic crafting done

* Restore untrained skill check

* Update changelog
2018-04-29 19:29:59 -04:00

17 lines
440 B
C#

using System;
using System.Collections.Generic;
namespace ACE.Database.Models.World
{
public partial class RecipeRequirementsString
{
public uint Id { get; set; }
public uint RecipeId { get; set; }
public int Stat { get; set; }
public string Value { get; set; }
public int Enum { get; set; }
public string Message { get; set; }
public Recipe Recipe { get; set; }
}
}