* Use orcs instead of goblins in Sea Orc unit description
"a great leap for all orcs" makes more sense since they are supposed to be orcs.
* Update Sea_Orc.cfg
Make Orga the Orc Warlord move to his keep and then face the player, Kapou'e
Co-authored-by: Tahsin Jahin Khalid <5283677+knyghtmare@users.noreply.github.com>
* Remove names from monsters
Remove names from Water Serpent and Cuttlefish in S11, and Cuttlefish in S13.
* Change speaker
The name "Cuttle Fish" is removed from Cuttlefish whose ID is "Cuttle Fish." Therefore, "type=Cuttle Fish" should be used to make it speak.
It is clearer than including them into the unit types.
This commit is restoring the weapon special note which was mistakenly
left unused and then was removed in PR #9864 .
* redesign Dune Paragon around the current Blademaster, to avoid RIPLIB
* change Dune Paragon's longsword to scimitar for consistency with Blademaster
* buffed pommel strike and added stun as requested by Dalas
* removed stun from paragon
* increased dune paragon price
* revert Dune Paragon pommel strike back to 11x3
* dune paragon price 81 > 85
* Remove STARTING_VILLAGES
There are no villages close enough anyway.
* Fix revealing villages
Use the coordinates of the ogre village instead of what probably were
two removed villages.
* Remove capture of non-existent village
There is no village at 32,13. The nearest one is at 36,11, and it is too
far for Mortic too reach in one turn, so they don't even try.
* Simplify human-meets-ogre event
Instead of repeatedly running FIND_NEARBY, use already assigned unit and
second_unit variables.
* Simplify ogre-meets-ogre event
Use already assigned "unit" variable and find another unit adjacent to
it.
* Fix bugs in Grug-meeets-ogre event
There were two bugs. First, calling FIND_NEARBY with $found_unit as an
argument causes a clash with its internal variable and leads to the
wrong (not nearest) unit being selected. Second, the last message used
$unit instead of $found_unit, which made Grug say this line instead of
the wild ogre.
* Use $this_item instead of $unit in foreach
To avoid clashes with $unit automatically assigned in other events.
* Fix clearing variables
Remove clearing variables that are not actually used, clean those which
are used. Remove elixir_drinker variable from the macro as we use the
trait instead.
* Use $x1, $y1 instead of $unit fields
Makes the code a bit shorter.
* Simplify drake sighted event
Replace FIND_NEARBY with simple condition.
* Rename variables
our_id to our_unit_id, their_id to their_unit_id
* SotBE: S12: make loyalists AI smarter
* SotBE S12: run wmlindent
to make it stop pestering me
* SotBE: add missing macro define
Just a temp define until the rework can be released
---------
Co-authored-by: Tahsin Jahin Khalid <5283677+knyghtmare@users.noreply.github.com>