forums | blogs | polls | tutorials | downloads | rules | help

Add new comment

Templarian Arch Sorcerer's picture

sjr wrote:
Frankly I dont know exactly what you are trying to do. Something like Hulking Brute Dragon Wing of the Lion of the Panther?

Modifiers are not set up to be in multiples. Course you can also psuedo do it.

Sure you can! Laughing out loud

[hulkingbrute]
	{
		type			= prefix;
		screen_name		= "Hulking Brute";
		power			= 108;
       		object_types    = armor,ring,amulet;

		[armor]
		{
			alteration			= alter_ARMOR;
			value				= 150;
			description			= "Adds 150 to Armor";
			duration			= #infinite;
			is_permanent		= true;
			is_single_instance	= false;
		}
		[armor]
		{
			alteration			= alter_ARMOR;
			value				= 130;
			description			= "Adds 130 to Armor";
			duration			= #infinite;
			is_permanent		= true;
			is_single_instance	= false;
		}
	}
   	[ofthelionofthepanther]
	{
		type			= suffix;
		screen_name		= "Of the Lion Of the Panther";
		power			= 108;
     		object_types    = weapon,armor,ring,amulet,spellbook;

		[health]
		{
			alteration			= alter_MAX_LIFE;
			value				= 529;
			description			= "Adds 529 to Health";
			duration			= #infinite;
			is_permanent		= true;
			is_single_instance	= false;
            			effect_script_equip	= stat_flick_05_gr;
           			effect_script_hit	= hit_spark_10_lgr;
		}
		[health]
		{
			alteration			= alter_MAX_LIFE;
			value				= 415;
			description			= "Adds 415 to Health";
			duration			= #infinite;
			is_permanent		= true;
			is_single_instance	= false;
            			effect_script_equip	= stat_flick_05_gr;
           			effect_script_hit	= hit_spark_10_lgr;
		}
	}
}

:P