gzdoom-gles/wadsrc/static/zscript/strife/questitems.txt

185 lines
2.4 KiB
Plaintext
Raw Normal View History

2016-03-01 15:47:10 +00:00
/*
* Quest Item Usage:
*
* 1 You got Beldin's ring
* 2 You got the Chalice
* 3 You got 300 gold, so it's time to visit Irale and the governor
* 4 Accepted the governor's power coupling mission
* 5 Accepted the governor's mission to kill Derwin
* 6 You broke the Front's power coupling
* 7 You took out the scanning team
* 8 You got the broken power coupling
* 9 You got the ear
* 10 You got the prison pass
* 11 You got the prison key
* 12 You got the severed hand
* 13 You've freed the prisoners!
* 14 You've Blown Up the Crystal
* 15 You got the guard uniform
2016-10-18 21:05:58 +00:00
* 16 You've Blown Up the Gates (/Piston);
* 17 You watched the Sigil slideshow on map10;
2016-03-01 15:47:10 +00:00
* 18 You got the Oracle pass
* 19 You met Quincy and talked to him about the Bishop
2016-10-18 21:05:58 +00:00
* 20;
2016-03-01 15:47:10 +00:00
* 21 You Killed the Bishop!
* 22 The Oracle has told you to kill Macil
* 23 You've Killed The Oracle!
* 24 You Killed Macil!
* 25 You've destroyed the Converter!
* 26 You've Killed The Loremaster!
* 27 You've Blown Up the Computer
* 28 You got the catacomb key
* 29 You destroyed the mind control device in the mines
2016-10-18 21:05:58 +00:00
* 30;
* 31;
2016-03-01 15:47:10 +00:00
*/
2016-10-18 21:05:58 +00:00
class QuestItem : Inventory
2016-03-01 15:47:10 +00:00
{
States
{
Spawn:
2016-10-18 21:05:58 +00:00
TOKN A -1;
Stop;
2016-03-01 15:47:10 +00:00
}
}
// Quest Items -------------------------------------------------------------
2016-10-18 21:05:58 +00:00
class QuestItem1 : QuestItem
2016-03-01 15:47:10 +00:00
{
}
2016-10-18 21:05:58 +00:00
class QuestItem2 : QuestItem
2016-03-01 15:47:10 +00:00
{
}
2016-10-18 21:05:58 +00:00
class QuestItem3 : QuestItem
2016-03-01 15:47:10 +00:00
{
}
2016-10-18 21:05:58 +00:00
class QuestItem4 : QuestItem
2016-03-01 15:47:10 +00:00
{
2016-10-18 21:05:58 +00:00
Default
{
Tag "$TAG_QUEST4";
}
2016-03-01 15:47:10 +00:00
}
2016-10-18 21:05:58 +00:00
class QuestItem5 : QuestItem
2016-03-01 15:47:10 +00:00
{
2016-10-18 21:05:58 +00:00
Default
{
Tag "$TAG_QUEST5";
}
2016-03-01 15:47:10 +00:00
}
2016-10-18 21:05:58 +00:00
class QuestItem6 : QuestItem
2016-03-01 15:47:10 +00:00
{
2016-10-18 21:05:58 +00:00
Default
{
Tag "TAG_QUEST6";
}
2016-03-01 15:47:10 +00:00
}
2016-10-18 21:05:58 +00:00
class QuestItem7 : QuestItem
2016-03-01 15:47:10 +00:00
{
}
2016-10-18 21:05:58 +00:00
class QuestItem8 : QuestItem
2016-03-01 15:47:10 +00:00
{
}
2016-10-18 21:05:58 +00:00
class QuestItem9 : QuestItem
2016-03-01 15:47:10 +00:00
{
}
2016-10-18 21:05:58 +00:00
class QuestItem10 : QuestItem
2016-03-01 15:47:10 +00:00
{
}
2016-10-18 21:05:58 +00:00
class QuestItem11 : QuestItem
2016-03-01 15:47:10 +00:00
{
}
2016-10-18 21:05:58 +00:00
class QuestItem12 : QuestItem
2016-03-01 15:47:10 +00:00
{
}
2016-10-18 21:05:58 +00:00
class QuestItem13 : QuestItem
2016-03-01 15:47:10 +00:00
{
}
2016-10-18 21:05:58 +00:00
class QuestItem14 : QuestItem
2016-03-01 15:47:10 +00:00
{
}
2016-10-18 21:05:58 +00:00
class QuestItem15 : QuestItem
2016-03-01 15:47:10 +00:00
{
}
2016-10-18 21:05:58 +00:00
class QuestItem16 : QuestItem
2016-03-01 15:47:10 +00:00
{
}
2016-10-18 21:05:58 +00:00
class QuestItem17 : QuestItem
2016-03-01 15:47:10 +00:00
{
}
2016-10-18 21:05:58 +00:00
class QuestItem18 : QuestItem
2016-03-01 15:47:10 +00:00
{
}
2016-10-18 21:05:58 +00:00
class QuestItem19 : QuestItem
2016-03-01 15:47:10 +00:00
{
}
2016-10-18 21:05:58 +00:00
class QuestItem20 : QuestItem
2016-03-01 15:47:10 +00:00
{
}
2016-10-18 21:05:58 +00:00
class QuestItem21 : QuestItem
2016-03-01 15:47:10 +00:00
{
}
2016-10-18 21:05:58 +00:00
class QuestItem22 : QuestItem
2016-03-01 15:47:10 +00:00
{
}
2016-10-18 21:05:58 +00:00
class QuestItem23 : QuestItem
2016-03-01 15:47:10 +00:00
{
}
2016-10-18 21:05:58 +00:00
class QuestItem24 : QuestItem
2016-03-01 15:47:10 +00:00
{
}
2016-10-18 21:05:58 +00:00
class QuestItem25 : QuestItem
2016-03-01 15:47:10 +00:00
{
}
2016-10-18 21:05:58 +00:00
class QuestItem26 : QuestItem
2016-03-01 15:47:10 +00:00
{
}
2016-10-18 21:05:58 +00:00
class QuestItem27 : QuestItem
2016-03-01 15:47:10 +00:00
{
}
2016-10-18 21:05:58 +00:00
class QuestItem28 : QuestItem
2016-03-01 15:47:10 +00:00
{
}
2016-10-18 21:05:58 +00:00
class QuestItem29 : QuestItem
2016-03-01 15:47:10 +00:00
{
}
2016-10-18 21:05:58 +00:00
class QuestItem30 : QuestItem
2016-03-01 15:47:10 +00:00
{
}
2016-10-18 21:05:58 +00:00
class QuestItem31 : QuestItem
2016-03-01 15:47:10 +00:00
{
}