Example #1
0
    public WeaponItem(WeaponBlueprint a_blue, CraftingMaterial a_craft)
    {
        blueprint = a_blue;
        material = a_craft;
        CraftUpdate();

        itemType = ItemType.Weapon;
        stackSize = 1;
        useable = true;
        consumable = false;
    }
Example #2
0
    public WeaponItem(WeaponBlueprint a_blue, CraftingMaterial a_craft)
    {
        blueprint = a_blue;
        material  = a_craft;
        CraftUpdate();

        itemType   = ItemType.Weapon;
        stackSize  = 1;
        useable    = true;
        consumable = false;
    }
Example #3
0
 public void SetItemToBuild(WeaponBlueprint item)
 {
     itemToBuild = item;
 }