Putting the 'role' back in role-playing games since 2002.
Donate to Codex
Good Old Games
  • Welcome to rpgcodex.net, a site dedicated to discussing computer based role-playing games in a free and open fashion. We're less strict than other forums, but please refer to the rules.

    "This message is awaiting moderator approval": All new users must pass through our moderation queue before they will be able to post normally. Until your account has "passed" your posts will only be visible to yourself (and moderators) until they are approved. Give us a week to get around to approving / deleting / ignoring your mundane opinion on crap before hassling us about it. Once you have passed the moderation period (think of it as a test), you will be able to post normally, just like all the other retards.

KickStarter The Iron Oath - turn-based strategy RPG with awesome pixel art

AwesomeButton

Proud owner of BG 3: Day of Swen's Tentacle
Patron
Joined
Nov 23, 2014
Messages
16,237
Location
At large
PC RPG Website of the Year, 2015 Make the Codex Great Again! Grab the Codex by the pussy Insert Title Here RPG Wokedex Divinity: Original Sin 2 A Beautifully Desolate Campaign Pillars of Eternity 2: Deadfire Steve gets a Kidney but I don't even get a tag. Pathfinder: Wrath
Great to hear development is progressing. I don't care when it's done as long as it's the real deal.
 

Darth Canoli

Arcane
Joined
Jun 8, 2018
Messages
5,687
Location
Perched on a tree
Note a new option of particular interest to Codexers since you are all basically powergaming murderers

Most RPG do "evil" path so wrong...
Why would i want to murder anyone who i could use for more wealth and power (merchants could fetch me some great items, NPC give me quests for power or ... items)

Evil done right is getting an interesting artifact but having to murder some innocents to get it, not just get a few coins, that's murderhobo path...

Well, i don't kill NPC, except if i get something of real value for it and the NPC is useless anyway.

Evil with a brain or nothing!
 

Kalarion

Serial Ratist
Patron
Joined
Jan 30, 2015
Messages
1,008
Location
San Antonio, TX
Strap Yourselves In Codex Year of the Donut Shadorwun: Hong Kong BattleTech Steve gets a Kidney but I don't even get a tag. Pathfinder: Wrath I helped put crap in Monomyth
This is the actual update: https://www.kickstarter.com/project...th-dark-turn-based-tactical-rpg/posts/3122023

Mod Support

A quick reminder before I get started that if you haven't done so yet please wishlist The Iron Oath on steam and to join our discord!



We've still been hard at work on The Iron Oath and this month we wanted to detail something we've been asked about a lot but wanted to wait till we were a little closer to launch before talking more about it.... mod support!


Mods
The Iron Oath will support a variety of things you can tweak and modify fairly easily. At your disposal will be the ability to make both big and small changes to quests, simulation variables, or custom artwork. For things like quests and in game events we're using modified version of the Yarn tool you can find here https://yarnspinner.dev/. While our version of the tool is pretty custom, quite a bit of the syntax and general tool use is the same so if you want to familiarize yourself with it then I recommend checking it out!


Here is a small sampling of the things you will have easy access to mod when the game is released.


  • Create new quests or entirely new campaigns that span decades of in game time
  • Modify basic stats and damage values for player & enemy classes and their abilities
  • Create custom dungeon layouts and set traps and enemy encounters as you see fit
  • Create new weapons, gear, consumables, etc (along with your own art) to be set up in the generic loot pool or make something unique to be given as a quest reward
  • Custom Company & House banner flags as well as custom character portraits
  • Add new player and enemy color templates
  • Create custom events for the player to stumble across in the overworld or in a dungeon where you can add your own character interactions, sound effects, and music
  • Access to most of the variables used for controlling how the game simulation works
  • Create custom backstories for generated characters and what traits are associated with them
  • Tons more with other variables you can tweak or icons you can manipulate

The above list is the broad overview of what you'll be able to modify and add to the game through mods but there are plenty of other things to tweak. I hope by the time we launch or shortly after we'll have a wiki setup that details everything but for now I'm going to walk through a couple examples of quests and events.

Sample Quest
d1ed72e8343dad7feadbca381faef3aa_original.png

The basic layout of our quest editor with various quests and event nodes
Here is what the quest editor looks like. On the left hand are a list of categories which contains groupings of quests and/or events. On the right hand side of the editor are a group of nodes that contain all the scripting for different quests and events in the selected category. Each node has either details on the quest itself, various events and traps, or scripted encounters associated with it.

670035ad7bd7cdaab99b0bf7dda3782a_original.png

A simple quest can be set up with very few lines of code and then fleshed out with more event node

After selecting a node you can modify any scripts contained inside. From here you can set various rewards, description text, which tileset is associated with the quest, etc. There are dozens of other variables you can configure when creating a quest like making it only appear if there is a plague active in a region or only during times of war. Certain quests can be given to the player through another scripted encounter so it doesn't require quite as many variables to set up since it will be assigned directly to the player from another event. The one above is a repeatable quest you could take when the conditions for it to show in a region occur. It could potentially be found in a city hub given out by one of the town citizens.

When making your own quests you could make a one off repeatable quest that is added to the pool of other quests to be potentially selected by the game for the player to take on or make a multi quest campaign that spans a generation!


Sample Event
Next I wanted to show you how to create a simple event that can be added to a pool of random events you might encounter during a playthrough. This one I'll break it down a little more so you can get a better understanding on what's going on in the script.

d42c20ff6ef9ff01a198e8591d3f5a7b_original.png

An event you might encounter while traveling through the world

<<set $EventTrigger to "TRAVELING_ON_WORLD_MAP">>

  • The trigger is what shows the event. This particular one is triggered by traveling on the world map. This could also be something like when entering a town, or an inn, or when a character dies, or when camping, etc.

<<set $RequiredRegionState to "BanditActivity">>

  • There are loads of regional events that can be active at any given time like a plague, blizzard, civilian revolts, town festivals, or (in this particular event's case) high bandit activity. There are dozens of these states to check with various effects on the region.

<<set $DaysUntilRepeat to 500>>

  • This variable tells the game to not repeat this encounter more often than once ever X number of days. This can also be set to -1 and it will never repeat after being seen once.

<<CreateNpc "id:travelingMerchant,name:Trader,img:maleCivilian">>

  • This is a function that creates a temporary NPC to be used in this event. These can also be used to create NPCs that persist for as long as needed in game.

**Up ahead, one of your outriders is returning to the caravan with great haste. They stop at the front of the column just ahead of you, and begin to relay something to [FNameP0], pointing down the road while they do so. With a nod of affirmation, [FNameP0] turns about on their mount and heads in your direction.**

  • This is some flavor text that will be shown to the player for the event. Any text like ** text ** will let the game know this is descriptive text and will do some extra formatting when displayed to the user. There are also some variables in the text that can be parsed so we can modify the text dynamically. In the above text [FNameP0] stands for First Name Player 0. This event will select a player at random from the company to be inserted into the text. There are also ways to grab specific players by different characteristics or tags as well.

{player:0}Sir, scouts report a bandit blockade up ahead. We could try and go around, but it will slow us down. What would you like to do?

  • The above is used when we want to have a particular character talk. The game will know to display their character portrait and name.
------------------------------------------------------------------------------------------------

<<if getCharacterWithTrait("Honorable") == "true">>

{

{player:$CharacterWithTrait}I say we take 'em head-on, boss. We know they're there, I'd rather not leave them for some unfortunate traveler to happen upon.

}

<<endif>>

------------------------------------------------------------------------------------------------

  • The above script will check if we have any characters that have the honorable trait and if we do then show some extra text. We could use checks like this to branch the event in an entirely different direction so that even if you see the same event multiple times it might play out differently.
------------------------------------------------------------------------------------------------

->[Honorable,Brave]Make ready to attack!

<<AddCitizenToGuildOpinion closest 5>>

->**Attack**

<<ShowPartyOnRegionTileset SE.WorldEventBanditAmbushEncounter>>

<<stop>>

<<stop>>

->[Cowardly,SelfPreserving]Let's go around. **Continue**

<<stop>>

------------------------------------------------------------------------------------------------

  • These lines are how we handle choices being made by the player. Adding -> before a line lets the game know we are about to add a choice for the player to make. Inside the brackets you can see various tags (like [Honorable,Brave]). These tags let the game know this choice is considered to be an action that is honorable and brave. Conversely, the dialogue option farther down is considered cowardly. Depending on who is in your company, making choices can effect how they feel about you as a leader and can have ramifications down the road.

<<ShowPartyOnRegionTileset SE.WorldEventBanditAmbushEncounter>>

  • One last line I wanted to touch on is the above. This is what tells the game we're about to get into a fight and will start the flow of going into combat. The SE.WorldEventBanditAmbushEncounter is another node in yarn that contains the details on the enemies involved in this encounter.

I hope you'll see there's plenty of potential for players to continue adding a ton of content after launch and I honestly can't wait to see what people come up with.


Timelapse
Finally, here is a timelapse for the Imitator demon.
 
Last edited by a moderator:

AwesomeButton

Proud owner of BG 3: Day of Swen's Tentacle
Patron
Joined
Nov 23, 2014
Messages
16,237
Location
At large
PC RPG Website of the Year, 2015 Make the Codex Great Again! Grab the Codex by the pussy Insert Title Here RPG Wokedex Divinity: Original Sin 2 A Beautifully Desolate Campaign Pillars of Eternity 2: Deadfire Steve gets a Kidney but I don't even get a tag. Pathfinder: Wrath
I nearly cried. This game will be a blessing. "They don't make them like this anymore", well - they do.
 

Sarissofoi

Arbiter
Joined
Mar 24, 2017
Messages
761
Its not out yet.
It looks like you already see a bear skin on your floor when bear is still alive and in the forest.
 

pm_675

Arbiter
Joined
Mar 14, 2017
Messages
229
It's alive:

:necro:



https://www.kickstarter.com/project...th-dark-turn-based-tactical-rpg/posts/3177035

Overworld

Hey everyone, we hope you're all doing well and enjoying the weekend! We've been busy the last few months finalizing and polishing various features of the game, and for this month's update we wanted to primarily share a quick look at our finalized Overworld.

0d120ca601a6f732124d1a24de125dab_original.png

We haven't shown a ton of the map previously, other than a small portion that was in the demo and our most recent trailer. The map has undergone some changes over the course of development and internal playtesting. It now consists of 5 regions (instead of 9) and 18 cities (plus 3 faction hubs). Though it sounds like a significant alteration, the overall size of the map hasn't changed too much. We did this because the original map had some regions that were too similar and redundant (now each region has its own distinct biome), and the size of the counties were too small and cramped with as many cities as we had. We also felt that with our original version it was harder to keep track of and stay connected to the world and its ongoing affairs.

One of the many changes we've done recently was also finalizing our fonts. Judging by past feedback on our previous fonts, I don't think we'll be able to please everyone, but hopefully the majority of you approve! Above all, we want to make sure both the headers and main text are always clear and readable, which wasn't always the case with the previous pixel art fonts we had.

b01bb31858b90809a6bfa23ddd159641_original.png

Kickstarter's resizing and compression might make this look a bit blurry!
As we continue to finalize and polish things we'll have more to share with you over the next few updates. Next month you can look forward to seeing some combat functionality and quality of life changes that we're excited to share! Here's a sneak peak at one of the QoL changes: visualized movement paths!

45084524ced8da8931d130885ffd969a_original.png


Lastly, we wanted to give a shoutout to our composer, Alex, who recently collaborated on an awesome album with Dark Souls composer Yuka Kitamura. You can listen to it for free on Alex's Bandcamp and Youtube. It's very cool to see him teaming up with such a high profile composer and we're thrilled that he's part of our team :)



As always, please take a moment to wishlist the game on Steam if you haven't already done so to help with visibility. We'd also love to have you join our Discord community! Thanks for reading and we'll see you next time!
 
Last edited by a moderator:

cyborgboy95

News Cyborg
Joined
Aug 24, 2019
Messages
2,759
https://store.steampowered.com/news/app/699330/view/3019080202268499863

Combat Improvements
A list of recent combat improvements and quality of life changes we've made to the game
Hey everyone! As mentioned in our last update, we recently made a bunch of combat improvements and QoL changes that we're excited to share with you today. We're also in the process of adding some new combat environments such as the Tundra that you can see in the video below:

1) Movement & Route Planning:

7726fc9c29f34fee5c7fcf9773474dd52aa5747b.png

You can now plan out your route by holding 'Shift' and drawing along the path you'd like to move. This is useful for avoiding hazards and potential attacks of opportunity. It's not shown in the video, but as an alternative you can now move your character multiple times so long as they haven't travelled their max distance. So if your character's movement value is 3, you can move 2 cells, and still be able to move 1 cell afterwards. So long as you don't take any damage or incur an attack of opportunity, each movement can be undone as well.

2) Line of Sight Changes:

9e1a93f108545075ee39c5f69eba4c14e07d2ba5.png

We've made a few tweaks to our line of sight mechanic. Like before, larger obstacles will block LoS entirely, and characters you don't have vision of won't be viable targets. Enemies and smaller obstacles (such as a barrel or waist high rock) can partially obscure LoS. If you only have partial line of sight to your target, your attack will do 50% damage. Previously, partial line of sight incurred an accuracy penalty instead of a damage penalty, but for the sake of reducing RNG and saving frustration when an ability misses (thus wasting a charge), we decided to change that mechanic.

3) Swapping Places:

4760ecaf3cfed1fdeeb3773a46cef9866eddcb5b.png

We've changed up our swap mechanic do be more useful and easier to use. Swapping allows you to trade places with an adjacent ally. Previously it was a secondary action on the hotbar, and using it expended that character's turn. We felt it was a bit weak however, and ending the character's turn removed some potential player creativity. Swapping is now done during the 'move phase' of a character's turn by clicking on the ally you want to trade places with (so long as they're within movement range). After swapping, the character is still able to act like they normally would after moving.

4) Reviving downed allies:

ef736b9aa7ce36b829213a5846f36c7bb64ed16c.png

Characters can now help up an adjacent downed ally, which is activated in the same fashion as swapping (targeting a downed ally during the move phase of a character's turn). The other methods for reviving a downed ally are still viable (using a potion or heal ability).

5) Knocking targets into objects:

3c7e5dd7cd154f1732b54ffa10020dadc1fba219.png

You can now push a target into terrain, objects or another character, triggering extra damage from the impact. Additionally, they become 'Staggered' for 1 round, which prevents them from evading attacks. It's now even more important to pay attention to your positioning and surroundings, as certain enemies can do the same thing to you!

6) Knocking targets into pits:

216d889d8de89efa59c6b7ccf35c4da40000033b.png

You can now push a target into any pits/holes that exist on the battlefield. Similarly to the above, the target will incur extra damage, but instead of being Staggered they will be Stunned for 1 round. We know it's not entirely realistic that the target survives such a fall, but we didn't want to make it an easy way to insta-kill enemies (and bosses especially!).

7) Unique Traps & Hazards:

185048d52405b480359d3e577ba4c881825ddb75.png

We'll be giving each combat environment at least 1 unique hazard. The new Tundra tileset has a special terrain type that cracks when stepped on. After being stepped on twice (or if a character stands on it for more than 1 round), the ice and snow will give way and open up into a pit.


8) Day/Night/Weather Effects:

For now these are purely visual just to mix things up, but we do have some plans for them to have an impact on combat (such as night time reducing visibility to 2-3 cells out from your characters, or a lightning strike on the battlefield).
 

Darth Canoli

Arcane
Joined
Jun 8, 2018
Messages
5,687
Location
Perched on a tree
If you had a brain you wouldn't be evil to begin with

You've got a point, usually, the most intelligent people are succesful scientists, sociologists or writers (not teenage novels writers, obviously), basement dwellers come second, they're too intelligent to get involved but not enough to do something meaningful with their life.

Then you have people with above the average intelligence and they know they won't revolutionize interstellar travel so they just settle on exploiting others, they're NEUTRAL EVIL, most politicians, banksters, real estate developers, insurers, big pharma godfathers...

Evil is the easiest way to go through life if you don't have any talent but to exploit others.

I should have said evil with half a brain, although evil with a brain works for politicians and bankers...
 

pm_675

Arbiter
Joined
Mar 14, 2017
Messages
229
Continues to exist:

https://www.kickstarter.com/project...th-dark-turn-based-tactical-rpg/posts/3262456

July Update: UI

Hey everybody, we hope you're all having a wonderful summer! We've been working a lot on our finalized UI for a variety of things recently and we wanted to share some of that progress with you this month, starting with the main menu. In the below video you'll see the save/load menu as well as the flow for creating a new campaign.

When creating a new campaign you'll have plenty of options, allowing you to make your experience easier or harder. The game is balanced around the "Normal" default settings but if you really want to test your skills, the options are there for you to do so.

5ed831f84ac2c8132e95db5f94b88b60_original.png

39ed4be217f557ea43a19da4409aa373_original.png

We've also finalized the overworld HUD, adding an element that shows your location/traveling status(in the top right corner), and also also allows you to:

  • Pause/Resume traveling to your destination
  • Cancel traveling to your destination
  • Wait in the Overworld (for X days)
  • Toggle Borders (Show Counties, Show Kingdoms, or Disable)
We also added in a quick little animation to show the passage of days whenever you wait in the overworld or select a choice that causes extra days to pass.

We recently finalized our UI for selecting which abilities you want a character to use in combat, as well as the window for upgrading each one. Each character can only equip 4 abilities at a time (each class has 6 to choose from, assuming they are a high enough level), and they can only be changed from the overworld.

Above you can see the upgrade tree for the Pyrolancer's Infernal Pillar ability. It's not possible to fully max out every tree (you're limited to 6 upgrade choices for each ability), so between your ability choices, and the upgrades for each, there is a lot opportunities to customize and make distinct builds that play very differently between characters of the same class. Each upgrade tree has 2 main branches. The upper path is generally more focused on support/utility upgrades, where as the bottom branch is generally more focused on increasing damage output.


Before signing off, we wanted to give a quick shout out to a few friends' projects:


GRIME
just launched today, and is a great looking metroidvania, with the soundtrack done by none other than our very own composer, Alex Roe! Go check out GRIME and make sure to listen to his incredible OST!


The Gardener And The Wild Vines
is a game made by our friends at Finite Reflection Studios which we met at a convention several years ago. I played a demo for this one and it was a ton of fun so make sure to check it out and wishlist it as it comes out on Sep. 9th.


Our friends behind Summoners Fate --a turn based tactical deckbuilder--recently launched their Steam page, so be sure to add them to your wishlist.


See you next time!
 
Last edited by a moderator:

cyborgboy95

News Cyborg
Joined
Aug 24, 2019
Messages
2,759
The update reposst above doesn't include videos in the orginal post on kickstarter, so I will post them here:
We also added in a quick little animation to show the passage of days whenever you wait in the overworld or select a choice that causes extra days to pass.

Below you can see the upgrade tree for the Pyrolancer's Infernal Pillar ability

Also
 
Last edited:

As an Amazon Associate, rpgcodex.net earns from qualifying purchases.
Back
Top Bottom