NWNDS/_notes_/languages.txt
2021-12-05 23:45:29 -05:00

83 lines
1.8 KiB
Plaintext

0 Dark_Sun_Dwarf
1 Dark_Sun_Elf
2 Mul
3 Dark_Sun_Halfling
4 Dark_Sun_HalfElf
21 DRAY_1ST_GEN
22 DRAY_2ND_GEN
30 Villichi
31 Gith
32 Aarakocra
33 Magma_Genasi
34 Rain_Genasi
35 Silt_Genasi
36 Sun_Genasi
37 Belgoi
39 Pterran
41 Tari
42 Tarek
43 Thor-Kreen_Jez HLSLANG_43_48
44 Thor-Kreen_Tondi
45 Thri-Kreen_Toksa
46 Thor-Kreen_Jhol
47 Thor-Kreen_Tkeech
48 Thri-Kreen_Jeral
199 Air_Genasi
200 Earth_Genasi
202 Fire_Genasi
205 Water_Genasi
219 Lizardfolk
220 YuanTi_Pure
222 Githyanki
225 Illithid
HLSLANG_199
This token allows you to speak Aquan, the language of the elemental plane of water.
This token allows you to speak the belgoi tongue.
####OLD
Language - Aarakocran - hlslang_106
Language - Dwarven - hlslang_4
Language - Elven - hlslang_1
Language - Halfling - hlslang_3
Language - Gith - hlslang_13
Language - Ignan - hlslang_104
Language - Illithid - hlslang_11
Language - Pterran - hlslang_105
Language - Druidic - hlslang_108
Language - Tari - hlslang_2
Language - Terran - hlslang_102
Language - Thieves' Cant - hlslang_9
Language - Thri-Kreen - hlslang_7
Language - Animal - hlslang_8
Language - Aquan - hlslang_103
Language - Belgoi - hlslang_6
Language - Giant - hlslang_107
Language - Reggelid - hlslang_109
Language - Yuan-Ti - hlslang_5
Language - Auran - hlslang_101
void main()
{
// Get the creature who triggered this event.
object oPC = GetEnteringObject();
// Only fire for (real) PCs.
if ( !GetIsPC(oPC) || GetIsDMPossessed(oPC) )
return;
// Abort if the PC does not have more than 2 levels of rogue.
if ( GetLevelByClass(CLASS_TYPE_ROGUE, oPC) <= 2 )
return;
// Abort if the PC has the item "hlslang_9".
if ( GetItemPossessedBy(oPC, "hlslang_9") != OBJECT_INVALID )
return;
// Give "hlslang_9" to the PC.
CreateItemOnObject("hlslang_9", oPC);
}