Elin Decompiled Documentation EA 23.102 Nightly
Loading...
Searching...
No Matches
CharaUpgrade.Item Class Reference
Inheritance diagram for CharaUpgrade.Item:
EClass

Public Attributes

int[] ints = new int[4]
 

Properties

int idEle [get, set]
 
int value [get, set]
 
int cost [get, set]
 
DNA.Type type [get, set]
 
- Properties inherited from EClass
static Game game [get]
 
static bool AdvMode [get]
 
static Player player [get]
 
static Chara pc [get]
 
static UI ui [get]
 
static Map _map [get]
 
static Zone _zone [get]
 
static FactionBranch Branch [get]
 
static FactionBranch BranchOrHomeBranch [get]
 
static Faction Home [get]
 
static Faction Wilds [get]
 
static Scene scene [get]
 
static BaseGameScreen screen [get]
 
static GameSetting setting [get]
 
static GameData gamedata [get]
 
static ColorProfile Colors [get]
 
static World world [get]
 
static SourceManager sources [get]
 
static SourceManager editorSources [get]
 
static SoundManager Sound [get]
 
static CoreDebug debug [get]
 

Additional Inherited Members

- Static Public Member Functions inherited from EClass
static int rnd (int a)
 
static int curve (int a, int start, int step, int rate=75)
 
static int rndHalf (int a)
 
static float rndf (float a)
 
static int rndSqrt (int a)
 
static void Wait (float a, Card c)
 
static void Wait (float a, Point p)
 
static int Bigger (int a, int b)
 
static int Smaller (int a, int b)
 
- Static Public Attributes inherited from EClass
static Core core
 

Detailed Description

Definition at line 6 of file CharaUpgrade.cs.

Member Data Documentation

◆ ints

int [] CharaUpgrade.Item.ints = new int[4]

Definition at line 9 of file CharaUpgrade.cs.

Property Documentation

◆ cost

int CharaUpgrade.Item.cost
getset

Definition at line 35 of file CharaUpgrade.cs.

36 {
37 get
38 {
39 return ints[2];
40 }
41 set
42 {
43 ints[2] = value;
44 }
45 }

◆ idEle

int CharaUpgrade.Item.idEle
getset

Definition at line 11 of file CharaUpgrade.cs.

12 {
13 get
14 {
15 return ints[0];
16 }
17 set
18 {
19 ints[0] = value;
20 }
21 }

◆ type

DNA.Type CharaUpgrade.Item.type
getset

Definition at line 47 of file CharaUpgrade.cs.

48 {
49 get
50 {
51 return ints[3].ToEnum<DNA.Type>();
52 }
53 set
54 {
55 ints[3] = (int)value;
56 }
57 }
Definition: DNA.cs:8
Type
Definition: DNA.cs:10

◆ value

int CharaUpgrade.Item.value
getset

Definition at line 23 of file CharaUpgrade.cs.

24 {
25 get
26 {
27 return ints[1];
28 }
29 set
30 {
31 ints[1] = value;
32 }
33 }

The documentation for this class was generated from the following file: