예제 #1
0
 public Item(Item ie)
 {
     this.rairity    = ie.rairity;
     this.codeName   = ie.codeName;
     this.nameText   = ie.nameText;
     this.flavorText = ie.flavorText;
     this.type       = ie.type;
     this.stat       = new Stat(ie.stat);
     this.serial     = ie.serial;
 }
예제 #2
0
 public Item(string codename, string nameText, string flavorText, ItemType type, Stat stat, int serial)
 {
     this.rairity    = Rairity.normal;
     this.codeName   = codename;
     this.nameText   = nameText;
     this.flavorText = flavorText;
     this.type       = type;
     this.stat       = new Stat(stat);
     this.serial     = serial;
 }