Areas #8
Labels
No Label
bug
duplicate
enhancement
help wanted
invalid
question
wontfix
No Milestone
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: EpicKnarvik97/pokemon-cmd#8
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
EpicKnarvik97 commented on Nov 24, 2017
Different areas should have pokemon of diffent levels, and some pokemon should only appear in some areas. At this point, all wild pokemon should be picked from a list of possibilities. Each picked pokemon should have some identical base stats, but also some random properties. When picking a pokemon to spawn, all pokemon should contain an area id of the area where they are allowed to spawn. Different areas should have different base levels, which sets the lowest level a pokemon in that area might have. This is to avoid the player becoming too over powered too soon.
GReaperEx commented on Nov 25, 2017
It needs general navigation, like areas in which the player can move. How will it be done though, in a grid with North/West/South/East or simply with linked rooms? And how will everything be drawn, just text or ASCII art too?
EpicKnarvik97 commented on Nov 25, 2017
I did explain it a bit in issue #3. I am thinking ascii art representing different structures and enviroments. Some places will need to load a new map, while keeping track of which entrance used. One way of implementing such a map, would be a text file containing a square with the whole map drawn as symbols. Something like this could be used to extract a portion of the map. With this approach, it would be easiest to use a centered + as the player, and let the map scroll for each step. If there are better ways of doing this, we should look for what gives the player the best experience.