126 changed files with 636 additions and 0 deletions
@ -0,0 +1,120 @@ |
|||
using System; |
|||
using System.Collections; |
|||
using System.Collections.Generic; |
|||
using UnityEngine; |
|||
|
|||
public class CardOriginalData : Singleton<CardOriginalData> |
|||
{ |
|||
private int cardId; |
|||
|
|||
private int cost; |
|||
|
|||
private string chineseName; |
|||
|
|||
private int rarity; |
|||
|
|||
private string[] function; |
|||
|
|||
private string[] functionVal; |
|||
|
|||
private int castingRange; |
|||
|
|||
private int effectRange; |
|||
|
|||
private int isDisposable; |
|||
|
|||
private string[] advantageFunction; |
|||
|
|||
private string[] advantageFunctionVal; |
|||
|
|||
private int carType; |
|||
|
|||
private string description; |
|||
|
|||
private string imgPath; |
|||
|
|||
public int CardId |
|||
{ |
|||
get { return cardId; } |
|||
set { cardId = value; } |
|||
} |
|||
|
|||
|
|||
public int Cost |
|||
{ |
|||
get { return cost; } |
|||
set { cost = value; } |
|||
} |
|||
|
|||
public string ChineseName |
|||
{ |
|||
get { return chineseName; } |
|||
set { chineseName = value; } |
|||
} |
|||
|
|||
public int Rarity |
|||
{ |
|||
get { return rarity; } |
|||
set { rarity = value; } |
|||
} |
|||
|
|||
public string[] Function |
|||
{ |
|||
get { return function; } |
|||
set { function = value; } |
|||
} |
|||
|
|||
public string[] FunctionVal |
|||
{ |
|||
get { return functionVal; } |
|||
set { functionVal = value; } |
|||
} |
|||
|
|||
public int CastingRange |
|||
{ |
|||
get { return castingRange; } |
|||
set { castingRange = value; } |
|||
} |
|||
|
|||
public int EffectRange |
|||
{ |
|||
get { return effectRange; } |
|||
set { effectRange = value; } |
|||
} |
|||
|
|||
public bool IsDisposable |
|||
{ |
|||
get { return isDisposable == 1; } |
|||
set { isDisposable = value ? 1 : 0; } |
|||
} |
|||
|
|||
public string[] AdvantageFunction |
|||
{ |
|||
get { return advantageFunction; } |
|||
set { advantageFunction = value; } |
|||
} |
|||
|
|||
public string[] AdvantageFunctionVal |
|||
{ |
|||
get { return advantageFunctionVal; } |
|||
set { advantageFunctionVal = value; } |
|||
} |
|||
|
|||
public int CarType |
|||
{ |
|||
get { return carType; } |
|||
set { carType = value; } |
|||
} |
|||
|
|||
public string Description |
|||
{ |
|||
get { return description; } |
|||
set { description = value; } |
|||
} |
|||
|
|||
public string ImgPath |
|||
{ |
|||
get { return imgPath; } |
|||
set { imgPath = value; } |
|||
} |
|||
} |
|||
@ -0,0 +1,11 @@ |
|||
fileFormatVersion: 2 |
|||
guid: fef905dcdd2ff584cb906322cf0aedd4 |
|||
MonoImporter: |
|||
externalObjects: {} |
|||
serializedVersion: 2 |
|||
defaultReferences: [] |
|||
executionOrder: 0 |
|||
icon: {instanceID: 0} |
|||
userData: |
|||
assetBundleName: |
|||
assetBundleVariant: |
|||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
After Width: | Height: | Size: 9.7 KiB |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
After Width: | Height: | Size: 14 KiB |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
After Width: | Height: | Size: 18 KiB |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
After Width: | Height: | Size: 11 KiB |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
After Width: | Height: | Size: 3.3 KiB |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Some files were not shown because too many files changed in this diff
Loading…
Reference in new issue