diff options
| author | aldrikboy <aldrikboy@gmail.com> | 2018-01-14 15:46:58 +0100 |
|---|---|---|
| committer | aldrikboy <aldrikboy@gmail.com> | 2018-01-14 15:46:58 +0100 |
| commit | a0217e8ffaceb6bc109eec270c754935a54eb404 (patch) | |
| tree | 612a5c6b54148b45a05eb74ea40af541ec69cbb2 /Penguloon/Objects/PenguinObject.cs | |
| parent | 8d30b5ac461e95cabfc74e46b610beabd81cb460 (diff) | |
upgrades
Diffstat (limited to 'Penguloon/Objects/PenguinObject.cs')
| -rw-r--r-- | Penguloon/Objects/PenguinObject.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Penguloon/Objects/PenguinObject.cs b/Penguloon/Objects/PenguinObject.cs index a4fa389..0fc1078 100644 --- a/Penguloon/Objects/PenguinObject.cs +++ b/Penguloon/Objects/PenguinObject.cs @@ -27,6 +27,12 @@ namespace Penguloon.Objects this.infoText = map.Level.ParentScene.Main.Resources.GetString(Resource.String.ObjectPenguin); } + public override void CreateUpgrades() + { + UpgradeList.Add(new ObjectUpgrade(100, UpgradeType.PopCount, "+1 pop", null)); + UpgradeList.Add(new ObjectUpgrade(100, UpgradeType.Speed, "+15 Speed", null)); + } + public override void DrawUnique(float deltaTime) { |
