DICE PACKS BUNDLE
  1. #1

    Gamemastery Guide conversion

    Since time remembers, the Gamemastery Guide conversion is in the early stages. The variant rules and all the extra subsystems seem like terrible task to add to FGU -- at least to someone like me. Is work still progressing?

    I'm mostly just wondering one thing, and I hope someone more versed in the way the FGU rulesets work could answer it. In the vein of the No Alignment variant rules. Is there a way to rename the different damage types such as positive, negative, lawful, chaotic and evil in the ruleset?

  2. #2
    Trenloe's Avatar
    Join Date
    May 2011
    Location
    Colorado, USA
    Posts
    33,402
    It's not being prioritised at this point - we're working on more core functionality before we look at coding optional rules from the Gamemaster Guide.

    You could write an extension to change the ruleset damage types, which are stored in LUA tables in scripts\data_common.lua - but there is some additional code to cater for alignment damage that might have to be changed, depending on exactly what you're trying to do.
    Private Messages: My inbox is forever filling up with PMs. Please don't send me PMs unless they are actually private/personal messages. General FG questions should be asked in the forums - don't be afraid, the FG community don't bite and you're giving everyone the chance to respond and learn!

  3. #3
    Quote Originally Posted by Grivenger View Post
    Since time remembers, the Gamemastery Guide conversion is in the early stages. The variant rules and all the extra subsystems seem like terrible task to add to FGU -- at least to someone like me. Is work still progressing?

    I'm mostly just wondering one thing, and I hope someone more versed in the way the FGU rulesets work could answer it. In the vein of the No Alignment variant rules. Is there a way to rename the different damage types such as positive, negative, lawful, chaotic and evil in the ruleset?
    You might be able to clone whatever is doing the damage and change the type to magic or whatever, but it would need to be done on an individual basis until a more permanent solution comes out.

  4. #4
    Quote Originally Posted by Trenloe View Post
    It's not being prioritised at this point - we're working on more core functionality before we look at coding optional rules from the Gamemaster Guide.

    You could write an extension to change the ruleset damage types, which are stored in LUA tables in scripts\data_common.lua - but there is some additional code to cater for alignment damage that might have to be changed, depending on exactly what you're trying to do.
    Thank you for the conversion status! I want to achieve what the variant rule states: "If you're using the no alignment variant, remove or replace aligned damage (chaotic, evil, good, and lawful damage), which requires significant adjustments for creatures like angels and devils that were built with a weakness to aligned damage. One option is to replace them one-for-one with new damage types like "radiant" and "shadow" that don't have any moral assumptions."

    Would an extension be enough to rename the damage types in the abilities and spells for example? I want to reskin it, for now.

    Quote Originally Posted by esmdev View Post
    You might be able to clone whatever is doing the damage and change the type to magic or whatever, but it would need to be done on an individual basis until a more permanent solution comes out.
    Yes. I'm hoping something similar would be possible.

  5. #5
    Trenloe's Avatar
    Join Date
    May 2011
    Location
    Colorado, USA
    Posts
    33,402
    Quote Originally Posted by Grivenger View Post
    Would an extension be enough to rename the damage types in the abilities and spells for example? I want to reskin it, for now.
    The issue is that the damage types used are embedded in the data records - for example, angels do "good" damage which is included in their attacks within the bestiary entry. You'd need to either manually change those, or write code in FG to change them when the creature is added to the combat tracker. You'd also have to decide on what different names you were going to use, code those into the ruleset as valid types and also code other damage type replacement - in resistances, weakness and immunities for example.

    It's possible, but it's not straightforward and would require changes in a number of places in the ruleset.

    You could write a more simple extension that added some damage types that you want to use instead, and then manually change creature statblocks, spells, etc. as needed.
    Private Messages: My inbox is forever filling up with PMs. Please don't send me PMs unless they are actually private/personal messages. General FG questions should be asked in the forums - don't be afraid, the FG community don't bite and you're giving everyone the chance to respond and learn!

  6. #6
    If I would implement this, I would probably just remove the alignment resistance check for PCs and Creatures (immunities), and add a bypass for alignment vulnerability, while keeping the NPCs stat block as is: just assume any good/lawful damage is "radiant" and evil/chaos is "shadow", without actually changing anything.

    But in practice (playing myself from 1-17 twice), alignment damage is uncommon enough to be an issue: just adjust the PCs abilities and edit the few monsters that would be impacted. I'm assuming a campaign without alignment wouldn't feature a lot of angels and fiends, so you should be good.
    Daniel Salles de Araújo (@dsaraujo)
    Developer of PFRPG2 GM Enhancements - Improve your Pathfinder 2E game!
    Check out the Pathfinder Deck of Endless NPCs!

  7. #7
    Quote Originally Posted by Trenloe View Post
    The issue is that the damage types used are embedded in the data records - for example, angels do "good" damage which is included in their attacks within the bestiary entry. You'd need to either manually change those, or write code in FG to change them when the creature is added to the combat tracker. You'd also have to decide on what different names you were going to use, code those into the ruleset as valid types and also code other damage type replacement - in resistances, weakness and immunities for example.

    It's possible, but it's not straightforward and would require changes in a number of places in the ruleset. I appreciate your explanation, and of course all of the work you've been doing with the ruleset.

    You could write a more simple extension that added some damage types that you want to use instead, and then manually change creature statblocks, spells, etc. as needed.
    Yes, adding some more damage types and adjusting the creatures and abilities manually would probably be easier.

    Quote Originally Posted by dsaraujo View Post
    If I would implement this, I would probably just remove the alignment resistance check for PCs and Creatures (immunities), and add a bypass for alignment vulnerability, while keeping the NPCs stat block as is: just assume any good/lawful damage is "radiant" and evil/chaos is "shadow", without actually changing anything.

    But in practice (playing myself from 1-17 twice), alignment damage is uncommon enough to be an issue: just adjust the PCs abilities and edit the few monsters that would be impacted. I'm assuming a campaign without alignment wouldn't feature a lot of angels and fiends, so you should be good.
    Yes, I considered just reflavouring them as part of the homebrew world without modifying things in FGU. What do you mean by removing the alignment immunities and adding a bypass for vulnerability?

  8. #8
    Currently if you character is good, it takes damage from evil (i.e., is vulnerable) and it is immune to good. You can set all the PCs to neutral and don't worry about it (but this would slightly nerf some creatures, especially angels and fiends).
    Daniel Salles de Araújo (@dsaraujo)
    Developer of PFRPG2 GM Enhancements - Improve your Pathfinder 2E game!
    Check out the Pathfinder Deck of Endless NPCs!

  9. #9
    Quote Originally Posted by dsaraujo View Post
    Currently if you character is good, it takes damage from evil (i.e., is vulnerable) and it is immune to good. You can set all the PCs to neutral and don't worry about it (but this would slightly nerf some creatures, especially angels and fiends).
    Sorry for my late response. Thanks for clarifying this for me.

    I'll have to dive in lua to see if I can end up adapting things to my wishes.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
FG Spreadshirt Swag

Log in

Log in