SotBE::8: Kapou'e talks differently if he kills the first Elf;

...also, the messages can be translated depending on the Elf's
gender. Fixes bug #19684
This commit is contained in:
Elvish_Hunter 2012-05-19 08:34:17 +00:00
parent 5bcacb91b3
commit 691bbbed8b
3 changed files with 69 additions and 8 deletions

View file

@ -40,6 +40,10 @@ Version 1.11.0-svn:
* Son of the Black Eye:
* Removed Al'Brock and Flar'Tar death as defeat condition in objectives in
Civil War
* Fixed bug #19684: Kapou'e says a different message if he kills the first Elf
in Silent Forest
* Silent Forest: the messages that appear upon killing the first Elf can be
translated differently depending on the Elf's gender
* Tutorial:
* Applied patch #3203: Allow to end the scenario via the right-click menu.
* Fixed bug #19316: Narrator messages are now translated.

View file

@ -270,15 +270,68 @@
message= _ "Well folks, it looks like we have our work cut out for us. We must destroy this enclave."
[/message]
[message]
speaker=second_unit
message= _ "With pleasure. But what should I do with this weakling?"
[/message]
[if]
[variable]
name=second_unit.id
equals="Kapou'e"
[/variable]
[message]
speaker="Kapou'e"
message= _ "Behead it."
[/message]
[then]
[if]
[variable]
name=unit.gender
equals=female
[/variable]
[then]
[message]
speaker="Kapou'e"
message= _ "As for this weakling, Ill personally behead her."
[/message]
[/then]
[else]
[message]
speaker="Kapou'e"
message= _ "As for this weakling, Ill personally behead him."
[/message]
[/else]
[/if]
[/then]
[else]
[if]
[variable]
name=unit.gender
equals=female
[/variable]
[then]
[message]
speaker=second_unit
message= _ "female^With pleasure. But what should I do with this weakling?"
[/message]
[message]
speaker="Kapou'e"
message= _ "Behead her."
[/message]
[/then]
[else]
[message]
speaker=second_unit
message= _ "With pleasure. But what should I do with this weakling?"
[/message]
[message]
speaker="Kapou'e"
message= _ "Behead him."
[/message]
[/else]
[/if]
[/else]
[/if]
[message]
speaker=unit

View file

@ -17,6 +17,10 @@ Version 1.11.0-svn:
* Son of the Black Eye:
* Removed Al'Brock and Flar'Tar death as defeat condition in objectives in
Civil War.
* Fixed bug #19684: Kapou'e says a different message if he kills the first Elf
in Silent Forest
* Silent Forest: the messages that appear upon killing the first Elf can be
translated differently depending on the Elf's gender
* Tutorial:
* Applied patch #3203: Allow to end the scenario via the right-click menu.
* Fixed bug #19316: Narrator messages are now translated.