Exemplo n.º 1
0
    void Start()
    {
        base.Start();

        this.name = "Player";

        this.inventory.AddItem(new Item("Interact", 0, 0));
        this.inventory.AddItem(Spin.BASIC_SPIN());
        this.inventory.AddItem(Gun.PISTOL());

        this.updateMaxHealth(1000);
    }
Exemplo n.º 2
0
    public static List <Item> GetAllItems()
    {
        // TODO improve
        List <Item> allItems = new List <Item>();

        allItems.Add(Spin.BASIC_SPIN());
        allItems.Add(Spin.SUPER_SPIN());
        allItems.Add(Gun.PISTOL());
        allItems.Add(Gun.MACHINE_PISTOL());
        allItems.Add(Gun.ASSAULT_RIFLE());
        allItems.Add(Gun.SNIPER());
        allItems.Add(Gun.HEAVY_SNIPER());
        allItems.Add(Shotgun.SHOTGUN());
        allItems.Add(Shotgun.DOUBLE_SHOTGUN());
        allItems.Add(Shotgun.AUTO_SHOTGUN());
        return(allItems);
    }