mirror of
https://github.com/ACEmulator/ACE
synced 2026-08-17 12:26:06 -04:00
* 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
17 lines
440 B
C#
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; }
|
|
}
|
|
}
|