mirror of
https://github.com/ACEmulator/ACE
synced 2026-08-17 12:26:06 -04:00
26 lines
532 B
C#
26 lines
532 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace ACE.Database.Models.World;
|
|
|
|
public partial class TreasureMaterialBase
|
|
{
|
|
public uint Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// Derived from PropertyInt.TsysMutationData
|
|
/// </summary>
|
|
public uint MaterialCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// Loot Tier
|
|
/// </summary>
|
|
public uint Tier { get; set; }
|
|
|
|
public float Probability { get; set; }
|
|
|
|
/// <summary>
|
|
/// MaterialType
|
|
/// </summary>
|
|
public uint MaterialId { get; set; }
|
|
}
|