An open API service indexing awesome lists of open source software.

https://github.com/bas-boop/vormenvsformen

Simple tower defence Unity game
https://github.com/bas-boop/vormenvsformen

csharp game game-design game-development unity unity2d

Last synced: about 1 month ago
JSON representation

Simple tower defence Unity game

Awesome Lists containing this project

README

          

# Old project
This is a old project. If you want to see questionable code then you are allowed to read it. If not, then go to another repo of me, for example:
* [Platypus game](https://github.com/bas-boop/Platypus-game)
* [Unity maze gen](https://github.com/bas-boop/Unity-maze-gen)
* [Smoll Knight plus Horse](https://github.com/bas-boop/Smoll_Knight_plus_Horse)

# VormenVsFormen

This is my Tower Defense game made in Unity. This is a solo project. You can place, upgrade and sell towers. Towers and enemies have an element type, so use the right one.

# Script highlight

## Tower
[Base tower + element enum](Assets/Scripts/Tower/Tower.cs)

[Ice tower](Assets/Scripts/Tower/Icetower.cs)

[Fire tower](Assets/Scripts/Tower/Firetower.cs)

[Poison tower](Assets/Scripts/Tower/Poisontower.cs)

[Wind tower](Assets/Scripts/Tower/Windtower.cs)

[Tower blueprint](Assets/Scripts/Tower/TowerBlueprint.cs)

## Element
[Debuff](Assets/Scripts/Tower/Debuff/Debuff.cs)

[Ice debuff](Assets/Scripts/Tower/Debuff/IceDebuff.cs)

[Fire debuff](Assets/Scripts/Tower/Debuff/FireDebuff.cs)

[Poision debuff](Assets/Scripts/Tower/Debuff/PoisonDebuff.cs)

[Wind debuff](Assets/Scripts/Tower/Debuff/WindDebuff.cs)

## Enemy
[Wave](Assets/Scripts/wave%20stuff/Wave.cs)

[Wave spawner](Assets/Scripts/wave%20stuff/Wavespawner.cs)

[Waypoints](Assets/Scripts/wave%20stuff/Waypoints.cs)

[Health + debuff handeling](Assets/Scripts/enmies/Enemy.cs)

[Movement](Assets/Scripts/enmies/EnemyMovement.cs)

## Building
[Tile](Assets/Scripts/TileScript.cs)

[Build manager](Assets/Scripts/BuildManger.cs)

## UI
[Tower world buttons](Assets/Scripts/UI/TileUI.cs)

[Shop](Assets/Scripts/UI/Shop.cs)

[Lives counter](Assets/Scripts/UI/LivesUI.cs)

[Money counter](Assets/Scripts/UI/EuroUI.cs)

## Other
[Bullet](Assets/Scripts/Tower/Bullet.cs)

[Money](Assets/Scripts/PlayerStats.cs)

[GameManager](Assets/Scripts/GameManger.cs)