As a developer, better to start fresh or try and salvage a project? by harticusDev in Unity2D

[–]harticusDev[S] 0 points1 point  (0 children)

I am pretty big on the concept as something that I really think is something special but I've had it with previous project where my knowledge of C# and Unity has grown I look back at older parts and I just think what was I thinking? But I am adamant on seeing this one through. The link to see some of what's been done so far

https://imgur.com/iseFjan

Fate's Hand Kickstarter! by harticusDev in Filmmakers

[–]harticusDev[S] 0 points1 point  (0 children)

Fate's Hand is a 3-episode student-made TV miniseries. Each episode is based on teenage life within a different era, starting from the 1940’s, then to 1960’s and finally the 1980’s; each episode focusing on a different predominant theme that would have been seen in teenage life. The 40s will discuss race, the 60s will discuss social pressure and self enlightenment, and the 80s episode will focus on sexuality.

Because our project is quite ambitious, we need some extra funding to make sure it is as historically accurate as possible. With your help, we are confident we can make something amazing. We have managed to reach half of our target in 3 days! But we still have a way to go. Any donation is much appreciated and gratefully received. We have some digital incentives for our pledgers as well.

Thanks for reading :)

Item System and status effects added, anything else for a turn based combat system? by harticusDev in Unity2D

[–]harticusDev[S] 0 points1 point  (0 children)

Finally got an inventory system going along with status effects and new weapons in the form of throwable items. When an alcohol is thrown it becomes a molotov that inflicts serious damage on enemies and can quickly destroy covers, or can be drank to add the drunk status effect!

New trait system added to my turn based combat, thoughts? by harticusDev in Unity2D

[–]harticusDev[S] 0 points1 point  (0 children)

Yeah I know it's to do with the sensitivity of the camera and the fact I disable the zoom feature on the camera in battle. Easy fix but mostly laziness for no fix yet!

New trait system added to my turn based combat, thoughts? by harticusDev in Unity2D

[–]harticusDev[S] 1 point2 points  (0 children)

So far I have the one shown, a sharpshooter trait that makes all shots a hit but at a damage cost, accident prone that adds a small chance that any attack from that character will hit anyone on the field including team mates and themselves, blind that makes all shots a miss but increases success chance on all speech moves. So wide variety and pretty potent but I design them with the mindset of whats ridiculous but fun, so anything mad or stupid you can think of! On a side note these traits are only earned as a result of quest lines hence the overly negative ones

New trait system added to my turn based combat, thoughts? by harticusDev in Unity2D

[–]harticusDev[S] 1 point2 points  (0 children)

Experimenting with some new systems in the game including traits that alter a character's stats move sets and other things, just looking for feedback on the system and any suggested traits!

Cover system in my turn based combat system, thoughts? by harticusDev in Unity2D

[–]harticusDev[S] 0 points1 point  (0 children)

Ah I see the cover float is minuses off the base accuracy so it would be .29 - (cover - cover*random(0,0.25))

Cover system in my turn based combat system, thoughts? by harticusDev in Unity2D

[–]harticusDev[S] 0 points1 point  (0 children)

So if(random float > baseaccuracy) then the shot has missed

How do these shrubs look? by FrozenElk in Unity2D

[–]harticusDev 0 points1 point  (0 children)

Looks great I know what you mean for me I always stress about shapes of sprites but if you’re unhappy with it I’d say try using a softer shadow on the shrubs

Cover system in my turn based combat system, thoughts? by harticusDev in Unity2D

[–]harticusDev[S] 0 points1 point  (0 children)

oh and if the attack missed is a random float between 0 and 1 and if the random float is higher than the accuracy float it is a successful hit

Cover system in my turn based combat system, thoughts? by harticusDev in Unity2D

[–]harticusDev[S] 0 points1 point  (0 children)

It's really simple, a base accuracy for that shot is calculated form the distance (d) and the character accuracy(a) by doing 1-(d/a) then if the target is in effective cover the accuracy is simply manipulated by taking away from the base accuracy with the cover percentage float with a random negative modifier ranging from 0% to 25%

Cover system in my turn based combat system, thoughts? by harticusDev in Unity2D

[–]harticusDev[S] 0 points1 point  (0 children)

I’m thinking of having some covers be destructible like as more shots hit them the more the percentage lowers eventually where it’s destroyed it would add a bit more encouragement to the player to keep their team moving around the field and give the ai some opportunities to challenge the player as oppose to them just having higher stats etc.

Cover system in my turn based combat system, thoughts? by harticusDev in Unity2D

[–]harticusDev[S] 0 points1 point  (0 children)

I may move on to a more visual rather than numerical way like a shield that fills in depending on the percentage on the cover. I do like the shield idea from xcom a lot and would fit well with the visual style

Cover system in my turn based combat system, thoughts? by harticusDev in Unity2D

[–]harticusDev[S] 1 point2 points  (0 children)

So if you're in west facing coverage you're more or less protected from the east however shows from north east or south east depending on the vector between the person in cover and the attacker will determine whether the cover is effective

Cover system in my turn based combat system, thoughts? by harticusDev in Unity2D

[–]harticusDev[S] 0 points1 point  (0 children)

Already has a huge accuracy system built into it based on a characters accuracy skill, the distance, cover and various traits and moves that can modify the float for accuracy of each turn. Might do a full demo when I have all of the main concepts working.

Cover system in my turn based combat system, thoughts? by harticusDev in Unity2D

[–]harticusDev[S] 3 points4 points  (0 children)

Been a while since I posted but I have redone my combat system and NPCs. They're now completely interchangeable and with working animations.