-
Notifications
You must be signed in to change notification settings - Fork 1
/
README.txt
22 lines (17 loc) · 1.15 KB
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
C# Text Based Game
Developed in Visual Studio 2019 16.11.8
The solution has two projects:
SuperAdventure (Windows Forms App .NET framework) – one for the UI
- uses Labels, RichTextVBox, DataGridViews, Buttons, ComboButtons
Engine (Class Library .NET framwork) - the other for the code to do all the calculations and logic for the game.
- includes all the classes (check player class for some info)
Useful info:
- Game is populated in the World.cs class, here quests, locations, items etc are all entered. Go here to add more.
- Look at GameMap.png in main directory for map layout to help you understand the map directions.
Checklist for adding Locations for new quests (in World.cs):
- Create IDs for any items, monsters, quests and locations
- Populate the new items, monsters etc. Following the structure (read comments)
- And add them at the bottom of each Populate function
- For monsters, don't forget to add the loot dropped item underneath
- For quests, don't forget to add QuestCompletionItems and RewardItem(s)
- For locations, don't forget to add that a quest is available there, and that monsters may be there