You've already forked Dpr-ScriptsOnly
mirror of
https://github.com/izzy2lost/Dpr-ScriptsOnly.git
synced 2026-03-10 11:49:05 -07:00
79 lines
2.1 KiB
C#
79 lines
2.1 KiB
C#
using System;
|
|
using UnityEngine;
|
|
|
|
namespace XLSXContent
|
|
{
|
|
[Serializable]
|
|
public class ItemTable : ScriptableObject
|
|
{
|
|
public ItemTable()
|
|
{
|
|
// Implicitly calls base constructor (ScriptableObject())
|
|
}
|
|
|
|
public ItemTable.SheetItem[] Item;
|
|
|
|
public ItemTable.SheetWazaMachine[] WazaMachine;
|
|
|
|
[Serializable]
|
|
public class SheetItem
|
|
{
|
|
public SheetItem()
|
|
{
|
|
// Implicitly calls base constructor (object())
|
|
}
|
|
|
|
public short no;
|
|
public byte type;
|
|
public int iconid;
|
|
public int price;
|
|
public int bp_price;
|
|
public byte eqp;
|
|
public byte atc;
|
|
public byte nage_atc;
|
|
public byte sizen_atc;
|
|
public byte sizen_type;
|
|
public byte tuibamu_eff;
|
|
public byte sort;
|
|
public byte group;
|
|
public byte group_id;
|
|
public byte fld_pocket;
|
|
public byte field_func;
|
|
public byte battle_func;
|
|
public byte wk_cmn;
|
|
public byte wk_critical_up;
|
|
public byte wk_atc_up;
|
|
public byte wk_def_up;
|
|
public byte wk_agi_up;
|
|
public byte wk_hit_up;
|
|
public byte wk_spa_up;
|
|
public byte wk_spd_up;
|
|
public byte wk_prm_pp_rcv;
|
|
public sbyte wk_prm_hp_exp;
|
|
public sbyte wk_prm_pow_exp;
|
|
public sbyte wk_prm_def_exp;
|
|
public sbyte wk_prm_agi_exp;
|
|
public sbyte wk_prm_spa_exp;
|
|
public sbyte wk_prm_spd_exp;
|
|
public sbyte wk_friend1;
|
|
public sbyte wk_friend2;
|
|
public sbyte wk_friend3;
|
|
public byte wk_prm_hp_rcv;
|
|
public uint flags0;
|
|
}
|
|
|
|
[Serializable]
|
|
public class SheetWazaMachine
|
|
{
|
|
public SheetWazaMachine()
|
|
{
|
|
// Implicitly calls base constructor (object())
|
|
}
|
|
|
|
public int itemNo;
|
|
public int machineNo;
|
|
public int wazaNo;
|
|
}
|
|
}
|
|
}
|