Non-Linear Phenogram of Battle Initiation - Printable Version +- Save-Point (https://www.save-point.org) +-- Forum: Games Development (https://www.save-point.org/forum-4.html) +--- Forum: Development Discussion (https://www.save-point.org/forum-17.html) +--- Thread: Non-Linear Phenogram of Battle Initiation (/thread-4606.html) Pages:
1
2
|
Non-Linear Phenogram of Battle Initiation - Taylor - 04-04-2013 ... or, how my game's bosses can't be assumed to be encountered at certain points. Alright. So some back story. My project doesn't follow a single linear story that I can predict the player to follow. Rather, you are given 31 days to work out how to save the world(s) from an ensuing disaster, and whatever you do until Day 31 is pretty much up to you. Freedom to explore and freedom to pursue quests, the enemies will grow in power after particular days in particular areas. In what is probably pretty much the social links of Persona 3 and 4, this project has character quests to follow, one for each of the party members. You build your relationships with the characters, sort out their character arcs, and whoever you're the most friendly with will influence the final showdown. There isn't exactly a main quest to speak of, so the bosses are part of these nine threads you may chose to follow. How? I can't predict that. Pretty much right from the beginning the player is free to go wherever and recruit any of the characters. This leads to for example, a player being up to the middle of the game but only now working on the quest of a character that was introduced in the beginning. Any boss fights in these quests are in limbo, separate to the current day that defines the assumed party level average and enemy encounter strength. The point to this topic, is that I am asking for help to work out a way around this. I have a few ideas about how to solve this, but are not sure about how well they would work:
RE: Non-Linear Phenogram of Battle Initiation - MechanicalPen - 04-04-2013 You could also just make different bosses in the editor, and use the day value to pick which ones the player fights. That would be the simplest way. You don't even need scripts to vary a boss's stats or skills though! Skills can use the player's average level as a conditional. So you can make sure the boss only uses the stronger skills if the player's party is at least level 20 or something. Battle events can take a switch as a conditional, though there is no way to alter an enemy's stats other than HP/MP with the default events. You could use the "script" event to write one pretty easily. RE: Non-Linear Phenogram of Battle Initiation - MetalRenard - 04-04-2013 (04-04-2013, 05:54 PM)MechanicalPen Wrote: You could also just make different bosses in the editor, and use the day value to pick which ones the player fights. That would be the simplest way.This is the best solution in my view. RE: Non-Linear Phenogram of Battle Initiation - Taylor - 04-04-2013 Ah, I forgot there is that point. With the existence of a bestiary, I was going to avoid that move because it would add extra entries, making it difficult to ever complete it for completionists. (Despite my intention to make it save data externally to save files.) Maybe I could combine entries into one ID in-game somehow... I'll have to also see how complex I can be with enemy actions in Ace. I've always been doubtful if truly complex enemies can be made with it. (Attacking allies under specific states, reversing debuffs... 'course I might just not be thinking hard enough...) RE: Non-Linear Phenogram of Battle Initiation - MetalRenard - 04-04-2013 (04-04-2013, 10:09 PM)Taylor Wrote: Maybe I could combine entries into one ID in-game somehow...Yes. Easy. When they win, add to a variable. Simple. RE: Non-Linear Phenogram of Battle Initiation - MechanicalPen - 04-05-2013 There IS always the option of letting the player steamroll some of these bosses. Let the late-game player have an easy win as a trophy to their achievements so far. RE: Non-Linear Phenogram of Battle Initiation - Taylor - 04-05-2013 MetalRenard Wrote:That's not quite what I meant. A script for a bestiary would produce a list of entries based on the Enemies data, and then enable or disable them if they've been seen/analysed/what-else. If there are multiple copies of a particular boss, they'll show up.Taylor Wrote:Maybe I could combine entries into one ID in-game somehow...Yes. Easy. When they win, add to a variable. MechanicalPen Wrote:There IS always the option of letting the player steamroll some of these bosses. Let the late-game player have an easy win as a trophy to their achievements so far.I'm less concerned about steamrolling bosses intended for early play without indication, and more like running into one far too difficult... unless perhaps I used this as a way to guide players into spreading out the time they take to complete quests? Could this just seem like I'm stepping on the way a player wants to play though? Yeah I don't want to give them -too- much freedom. Balancing that in something freeroam like this continues to sound a challenge. RE: Non-Linear Phenogram of Battle Initiation - MechanicalPen - 04-05-2013 Have you considered not having levels at all? It sounds crazy, yes but the whole point of levels is to give a sense of progression and to wall off content (or to let the player grind to compensate for their lack of skill). Since you are already giving the player a sense of progression through recruiting, levels may not be necessary. It sounds like monster scaling is your best bet if you do not want to get rid of leveling. RE: Non-Linear Phenogram of Battle Initiation - MetalRenard - 04-05-2013 Then try re-thinking your problem... What about if every time you beat a monster it droped an item unique to that type of monster, you can collect these. Each item has its own ID in the database so it would allow you to group these different levels of monster together, and you can have these in a secondary item menu of sorts. Not only would it tell you what you've killed but also how many! Just an idea. RE: Non-Linear Phenogram of Battle Initiation - Ryaryu - 04-17-2013 Well, you can always make it the hard way. Make a variable with the days passed. Obviously it will increase at each day. Then make tons of States. One for each, let's say, 5 days. Put no name on them, and no icon either. Each of the states should multiply your boss (and maybe monsters) parameters by a ammount. For example, the state related to day 5 to 10 will give a bonus of 20% to all of the base parameters (HP, MP, FP, Atk, Def, etc). The state related to day 10 to 15 will give bonuses of 35%. And so on. So you'll have this kind of states: State(no name - activate during days 5 to 10) - 20% to all base parameters State(no name - activate during days 10 to 15) - 35% to all base parameters And so on. Now you'll edit the troop files of bosses. In EACH of them, you will give the boss (and the monsters if you want) the state according to the ammount of days passed. You can also use Level Condition on boss skills so they will use hard hitting ones when the party is strong. The code will be something like this: IF CASE: Variable[XXXX:DAYS] >= 25 Change Enemy State: All troop, +[STATE RELATED TO DAYS 25 TO 30] Else IF CASE: Variable[XXXX:DAYS] >= 20 Change Enemy State: All troop, +[STATE RELATED TO DAYS 20 TO 25] Else ... And so on END IF This'll gives a lot of work to do, but you can achieve your goal this way. |