the initial commit to the repo.

This commit is contained in:
NukedBart 2025-10-25 01:27:14 +08:00
parent 025c032b8c
commit 1b757591b9
264 changed files with 21882 additions and 0 deletions

20
stoopid.raw/ItemData.cs Normal file
View file

@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
[Serializable]
public class ItemData
{
public string Id { get; set; }
public string ShortName { get; set; }
public string Name { get; set; }
public string NormalizedName { get; set; }
public List<string> Types { get; set; }
public int BasePrice { get; set; }
public int? avg24hPrice { get; set; }
}