신규 데이터 테이블 추가
This commit is contained in:
parent
10e10773b6
commit
12b68b9a5f
|
|
@ -0,0 +1,17 @@
|
||||||
|
|
||||||
|
public class ConsumableItemData : Excel
|
||||||
|
{
|
||||||
|
public long index;
|
||||||
|
public string name;
|
||||||
|
public eItemType item_type;
|
||||||
|
public long reward;
|
||||||
|
public override void toJson()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
||||||
|
public enum eItemType
|
||||||
|
{
|
||||||
|
exp = 1,
|
||||||
|
package,
|
||||||
|
random
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,11 @@
|
||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 2f94afff9bca74d4f9340e99b5b92695
|
||||||
|
MonoImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 2
|
||||||
|
defaultReferences: []
|
||||||
|
executionOrder: 0
|
||||||
|
icon: {instanceID: 0}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
|
|
@ -7,10 +7,9 @@ public class ExcelDatas
|
||||||
public Dictionary<long, UnitData> unitData;
|
public Dictionary<long, UnitData> unitData;
|
||||||
public Dictionary<long, AIData> aiData;
|
public Dictionary<long, AIData> aiData;
|
||||||
public Dictionary<long, EquipmentData> equipmentData;
|
public Dictionary<long, EquipmentData> equipmentData;
|
||||||
|
public Dictionary<long, ShopData> shopData;
|
||||||
|
public Dictionary<long, ShopItemData> shopItemData;
|
||||||
|
public Dictionary<long, ConsumableItemData> consumableItemData;
|
||||||
|
|
||||||
|
|
||||||
public IEnumerator<float> ToJson(Action action)
|
public IEnumerator<float> ToJson(Action action)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,17 @@
|
||||||
|
|
||||||
|
public class ShopData : Excel
|
||||||
|
{
|
||||||
|
public long index;
|
||||||
|
public string name;
|
||||||
|
public eShopType type;
|
||||||
|
public override void toJson()
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
public enum eShopType
|
||||||
|
{
|
||||||
|
bigImage = 1,
|
||||||
|
smallBox,
|
||||||
|
smallRandom
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,11 @@
|
||||||
|
fileFormatVersion: 2
|
||||||
|
guid: ec3d9f2741df00e4c801af8f6e0f109a
|
||||||
|
MonoImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 2
|
||||||
|
defaultReferences: []
|
||||||
|
executionOrder: 0
|
||||||
|
icon: {instanceID: 0}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
|
|
@ -0,0 +1,20 @@
|
||||||
|
public class ShopItemData : Excel
|
||||||
|
{
|
||||||
|
public long index;
|
||||||
|
public string name;
|
||||||
|
public long shop_index;
|
||||||
|
public eBuyType buy_type;
|
||||||
|
public int buy;
|
||||||
|
public long reward;
|
||||||
|
public override void toJson()
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public enum eBuyType
|
||||||
|
{
|
||||||
|
gold = 1,
|
||||||
|
cash,
|
||||||
|
money
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,11 @@
|
||||||
|
fileFormatVersion: 2
|
||||||
|
guid: aa470d7be4edc3e4ea259674ccb7ac85
|
||||||
|
MonoImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 2
|
||||||
|
defaultReferences: []
|
||||||
|
executionOrder: 0
|
||||||
|
icon: {instanceID: 0}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
Loading…
Reference in New Issue