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
- Host: GitHub
- URL: https://github.com/bas-boop/vormenvsformen
- Owner: bas-boop
- Created: 2022-10-27T10:12:28.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-05-30T21:11:34.000Z (about 2 years ago)
- Last Synced: 2024-05-30T23:47:47.353Z (about 2 years ago)
- Topics: csharp, game, game-design, game-development, unity, unity2d
- Language: C#
- Homepage: https://bas-de-reus.nl/Vormen-Vs-Formen
- Size: 1.45 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)