mirror of
https://github.com/SWG-Source/dsrc.git
synced 2026-08-01 01:15:59 -04:00
31 lines
600 B
Plaintext
31 lines
600 B
Plaintext
/**
|
|
|
|
*
|
|
* Title: camp_quality.script
|
|
* Description: camp_quality
|
|
|
|
*/
|
|
|
|
//------------------------------------------------
|
|
// Inherits
|
|
//------------------------------------------------
|
|
|
|
inherits item.camp.camp_base;
|
|
|
|
//------------------------------------------------
|
|
// Methods
|
|
//------------------------------------------------
|
|
|
|
//------------------------------------------------
|
|
// OnAttach
|
|
//------------------------------------------------
|
|
|
|
trigger OnAttach()
|
|
{
|
|
// Set our skill req.
|
|
setObjVar( self, "campPower", 2 );
|
|
setObjVar( self, "skillReq", 20 );
|
|
|
|
return SCRIPT_CONTINUE;
|
|
}
|