Liberi
An exergame built for kids with CP!
GuardianWeapon.cs
1 using UnityEngine;
2 using System.Collections;
3 
4 public enum GuardianWeaponType
5 {
6  Melee,
7  Ranged
8 }
9 
13 public class GuardianWeapon : Item
14 {
18  public GuardianWeaponType AttackStyle;
22  public Sprite PrimarySprite;
26  public GameObject Projectile;
30  public AudioClip BasicSound;
34  public AudioClip BuffedSound;
35 
36  public override string Type {get {return "guardian";}}
37  public override bool Equippable {get {return true;}}
38 }
Sprite PrimarySprite
The primary sprite.
A Class for storing items. Can be used as is or be derived from. See GemItem or GuardianWeapon for ex...
Definition: Item.cs:8
Derived class for storing Wiskin Defense weapons.
AudioClip BuffedSound
The sound used for HR Buffed attacks with this weapon.
GuardianWeaponType AttackStyle
What attack style this weapon is (Melee vs. Ranged).
GameObject Projectile
The projectile this weapon fires if it is a Ranged weapon.
AudioClip BasicSound
The sound used for basic attacks with this weapon.