Skip to content
This repository has been archived by the owner on Jun 28, 2024. It is now read-only.

Commit

Permalink
0.9.49
Browse files Browse the repository at this point in the history
more opp school options
  • Loading branch information
subtledoctor committed Jul 28, 2023
1 parent 5557f87 commit 8bd26f9
Show file tree
Hide file tree
Showing 6 changed files with 405 additions and 219 deletions.
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# TomeAndBlood

Tome And Blood: More Options for Wizards and Sorcerers v0.9.48
Tome And Blood: More Options for Wizards and Sorcerers v0.9.49

## Overview

Expand All @@ -23,10 +23,13 @@ COMPONENT 12: Rebalanced Specialist Opposition Schools

This component allows changes to which spells are in an "opposition school" and thus unavailable to specialists. There are currently three options, two of which will be available for install depending on which game is being played:

-- No Opposition Schools (all specialists can cast all spells)<br />
-- Baldur's Gate Opposition Schools (matches BG/BG2)<br />
-- Baldur's Gate Opposition Schools, low-level allowed (matches BG/BG2, but up to 3rd-level spells are universal)<br />
-- Icewind Dale Opposition Schools (matches IWD)<br />
-- No Opposition Schools (all specialists can cast all spells)<br />
-- Icewind Dale Opposition Schools, low-level allowed (matches IWD, but up to 3rd-level spells are universal)<br />
-- PnP Opposition Schools (matches the original 2E PHB)<br />
-- PnP Opposition Schools, low-level allowed (matches the original 2E PHB, but up to 3rd-level spells are universal)<br />

COMPONENT 13: Revised Illusionary Clones

Expand Down
7 changes: 5 additions & 2 deletions TomeAndBlood/README.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# TomeAndBlood

Tome And Blood: More Options for Wizards and Sorcerers v0.9.48
Tome And Blood: More Options for Wizards and Sorcerers v0.9.49

## Overview

Expand All @@ -23,10 +23,13 @@ COMPONENT 12: Rebalanced Specialist Opposition Schools

This component allows changes to which spells are in an "opposition school" and thus unavailable to specialists. There are currently three options, two of which will be available for install depending on which game is being played:

-- No Opposition Schools (all specialists can cast all spells)<br />
-- Baldur's Gate Opposition Schools (matches BG/BG2)<br />
-- Baldur's Gate Opposition Schools, low-level allowed (matches BG/BG2, but up to 3rd-level spells are universal)<br />
-- Icewind Dale Opposition Schools (matches IWD)<br />
-- No Opposition Schools (all specialists can cast all spells)<br />
-- Icewind Dale Opposition Schools, low-level allowed (matches IWD, but up to 3rd-level spells are universal)<br />
-- PnP Opposition Schools (matches the original 2E PHB)<br />
-- PnP Opposition Schools, low-level allowed (matches the original 2E PHB, but up to 3rd-level spells are universal)<br />

COMPONENT 13: Revised Illusionary Clones

Expand Down
52 changes: 47 additions & 5 deletions TomeAndBlood/TomeAndBlood.tp2
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
BACKUP ~weidu_external/backup/TomeAndBlood~
AUTHOR ~aquadrizzt~
VERSION ~0.9.48~
VERSION ~0.9.49~

ALWAYS

Expand Down Expand Up @@ -52,8 +52,11 @@ LAF spell_schools END
// 12: CHANGE ARCANE OPPOSITION SCHOOLS (Subtledoctor)
// 1201: no opposition schools
// 1202: iwd opposition schools
// 12021: iwd opposition schools, low-level spells universal
// 1203: bg2 opposition schools
// 12031: bg2 opposition schools, low-level spells universal
// 1204: PnP opposition schools
// 12041: PnP opposition schools, low-level spells universal
// -----------------------------

//no wizard opposition schools______________________________________________________
Expand All @@ -80,7 +83,20 @@ COPY_EXISTING ~sw1h01.itm~ ~override/qdtnb_opp_schools.qd~ //detection for this

INCLUDE ~TomeAndBlood/comp/setup_spell_schools.tpa~

LAF change_opposition_schools STR_VAR mode = ~iwd~ END
LAF change_opposition_schools INT_VAR low_level_allowed = 0 STR_VAR mode = ~iwd~ END

//iwd opposition schools > level 4__________________________________________________
//
BEGIN @12021
DESIGNATED 12021
SUBCOMPONENT @12 (GAME_IS ~bgt tob bgee bg2ee eet iwd iwdee~)
//GROUP @5

COPY_EXISTING ~sw1h01.itm~ ~override/qdtnb_opp_schools.qd~ //detection for this component

INCLUDE ~TomeAndBlood/comp/setup_spell_schools.tpa~

LAF change_opposition_schools INT_VAR low_level_allowed = 3 STR_VAR mode = ~iwd~ END

//bg2 opposition schools____________________________________________________________
//
Expand All @@ -93,20 +109,46 @@ COPY_EXISTING ~sw1h01.itm~ ~override/qdtnb_opp_schools.qd~ //detection for this

INCLUDE ~TomeAndBlood/comp/setup_spell_schools.tpa~

LAF change_opposition_schools STR_VAR mode = ~bg2~ END
LAF change_opposition_schools INT_VAR low_level_allowed = 0 STR_VAR mode = ~bg2~ END

//bg2 opposition schools > level 4__________________________________________________
//
BEGIN @12031
DESIGNATED 12031
SUBCOMPONENT @12 (GAME_IS ~bgt tob bgee bg2ee eet iwd iwdee~)
//GROUP @5

COPY_EXISTING ~sw1h01.itm~ ~override/qdtnb_opp_schools.qd~ //detection for this component

INCLUDE ~TomeAndBlood/comp/setup_spell_schools.tpa~

LAF change_opposition_schools INT_VAR low_level_allowed = 3 STR_VAR mode = ~bg2~ END

//pnp opposition schools____________________________________________________________
//
BEGIN @1204
DESIGNATED 1204
SUBCOMPONENT @12 (GAME_IS ~bgt tob bgee bg2ee eet~)
SUBCOMPONENT @12 (GAME_IS ~bgt tob bgee bg2ee eet iwd iwdee~)
//GROUP @5

COPY_EXISTING ~sw1h01.itm~ ~override/qdtnb_opp_schools.qd~ //detection for this component

INCLUDE ~TomeAndBlood/comp/setup_spell_schools.tpa~

LAF change_opposition_schools INT_VAR low_level_allowed = 0 STR_VAR mode = ~pnp~ END

//pnp opposition schools > level 4__________________________________________________
//
BEGIN @12041
DESIGNATED 12041
SUBCOMPONENT @12 (GAME_IS ~bgt tob bgee bg2ee eet iwd iwdee~)
//GROUP @5

COPY_EXISTING ~sw1h01.itm~ ~override/qdtnb_opp_schools.qd~ //detection for this component

INCLUDE ~TomeAndBlood/comp/setup_spell_schools.tpa~

LAF change_opposition_schools STR_VAR mode = ~pnp~ END
LAF change_opposition_schools INT_VAR low_level_allowed = 3 STR_VAR mode = ~pnp~ END


// -----------------------------
Expand Down
Loading

0 comments on commit 8bd26f9

Please sign in to comment.