2021-12-05 17:54:36 +00:00
|
|
|
#include "FountainOfImagination.h"
|
2022-07-05 06:00:10 +00:00
|
|
|
#include "dCommonVars.h"
|
|
|
|
#include "Entity.h"
|
2021-12-05 17:54:36 +00:00
|
|
|
|
2022-07-28 13:39:57 +00:00
|
|
|
void FountainOfImagination::OnStartup(Entity* self) {
|
|
|
|
self->SetVar<uint32_t>(u"numCycles", 6);
|
|
|
|
self->SetVar<float_t>(u"secPerCycle", 30.0f);
|
|
|
|
self->SetVar<float_t>(u"delayToFirstCycle", 1.5f);
|
|
|
|
self->SetVar<float_t>(u"deathDelay", 30.0f);
|
|
|
|
self->SetVar<uint32_t>(u"numberOfPowerups", 5);
|
|
|
|
self->SetVar<LOT>(u"lootLOT", 935);
|
2021-12-05 17:54:36 +00:00
|
|
|
|
2022-07-28 13:39:57 +00:00
|
|
|
// Initiate the actual script
|
|
|
|
OnTemplateStartup(self);
|
2021-12-05 17:54:36 +00:00
|
|
|
}
|