<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.the-reincarnation.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Tempusfugit</id>
	<title>TheReincarnation - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.the-reincarnation.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Tempusfugit"/>
	<link rel="alternate" type="text/html" href="https://wiki.the-reincarnation.org/Special:Contributions/Tempusfugit"/>
	<updated>2026-06-02T13:01:12Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.31.0</generator>
	<entry>
		<id>https://wiki.the-reincarnation.org/index.php?title=Barriers&amp;diff=49289</id>
		<title>Barriers</title>
		<link rel="alternate" type="text/html" href="https://wiki.the-reincarnation.org/index.php?title=Barriers&amp;diff=49289"/>
		<updated>2015-07-16T05:37:05Z</updated>

		<summary type="html">&lt;p&gt;Tempusfugit: /* Effects */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Magical barriers block enemy's [[spells]] and [[items]] to your country. Requiring certain formula and technique, only an Archmage can build a barrier. There's no way to order anything when you are concentrating to build them. Higher rate of barriers will increase the chance of protecting yourself from various kind of magical attacks.&lt;br /&gt;
&lt;br /&gt;
==Effects==&lt;br /&gt;
*The percentage of barriers on your land determines overall spell resistance&lt;br /&gt;
** Building ~2.5% barriers gives the maximum 75% barrier resistance&lt;br /&gt;
** The skill [[Barrier Proficiency]] can raise maximum resistance to 83%.&lt;br /&gt;
*Barriers require 30 m.p./turn upkeep (60mp/turn on Lightning)&lt;br /&gt;
*Barriers provide no space for population, vs 10 for wilderness.&lt;br /&gt;
*If your name is Bruce, barriers will have no effect, because you are a gam.&lt;br /&gt;
&lt;br /&gt;
==Building barriers==&lt;br /&gt;
* The number of [[Workshops]] does not increase the building rate for barriers (these are magical buildings, only the mage can make them)&lt;br /&gt;
** Neither does the [[Engineer]] (these are magical buildings, only the mage can make them)&lt;br /&gt;
* If you build 50 barriers at once you will &lt;br /&gt;
** first pay the building cost 50 barriers times 50 m.p. = 2500 m.p.&lt;br /&gt;
** but also pay the upkeep for 50 barriers times 30 m.p. for 50 [[turns]] at a cost of 75,000 [[mana]] in upkeep alone. &lt;br /&gt;
* Building them one turn at a time saves you ~37,500 [[mana]] on upkeep mana. &lt;br /&gt;
** of course the faster you move, the less you risk being attacked while building barriers...&lt;br /&gt;
&lt;br /&gt;
==Program Code of Barriers==&lt;br /&gt;
Source: [http://www.the-reincarnation.com/viewtopic.php?f=7&amp;amp;t=17213]&lt;br /&gt;
&lt;br /&gt;
sub spell_resisted {&lt;br /&gt;
::	my $caster_mage = shift;&lt;br /&gt;
::	my $target_mage = shift;&lt;br /&gt;
::	my $spell_color = shift;&lt;br /&gt;
::	my $barrier_resistance = $target_mage-&amp;gt;getBarrierResistance() / 100;&lt;br /&gt;
::	my $sl_resistance = 0;&lt;br /&gt;
::	my $barrier_piercing = $caster_mage-&amp;gt;{mage_spellpiercing} / 100;&lt;br /&gt;
::	&lt;br /&gt;
::	my $color_resistance = 0;&lt;br /&gt;
::	$color_resistance = $target_mage-&amp;gt;getResistanceNether() if $spell_color eq 'NETHER';&lt;br /&gt;
::	$color_resistance = $target_mage-&amp;gt;getResistancePhantasm() if $spell_color eq 'PHANTASM';&lt;br /&gt;
::	$color_resistance = $target_mage-&amp;gt;getResistanceAscendant() if $spell_color eq 'ASCENDANT';&lt;br /&gt;
::	$color_resistance = $target_mage-&amp;gt;getResistanceVerdant() if $spell_color eq 'VERDANT';&lt;br /&gt;
::	$color_resistance = $target_mage-&amp;gt;getResistanceEradication() if $spell_color eq 'ERADICATION';&lt;br /&gt;
::	&lt;br /&gt;
::	$color_resistance = 75 if $color_resistance &amp;gt; 75;&lt;br /&gt;
::	&lt;br /&gt;
::	#Spell Penetration also reduces color resistance&lt;br /&gt;
::	$color_resistance -= $caster_mage-&amp;gt;{mage_spellpiercing};&lt;br /&gt;
::	$color_resistance = 0 if $color_resistance &amp;lt; 0;&lt;br /&gt;
::	&lt;br /&gt;
::	$color_resistance /= 100;&lt;br /&gt;
::	&lt;br /&gt;
::	#check barriers&lt;br /&gt;
::	if ( rand() &amp;lt; ($barrier_resistance + $sl_resistance - $barrier_piercing)) {&lt;br /&gt;
::		return 0;&lt;br /&gt;
::	}&lt;br /&gt;
::	&lt;br /&gt;
::	#check resistances&lt;br /&gt;
::	if (rand() &amp;lt; $color_resistance) {&lt;br /&gt;
::		return 1;&lt;br /&gt;
::	}&lt;br /&gt;
::	&lt;br /&gt;
::	#not blocked&lt;br /&gt;
::	return 2;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Buildings]]&lt;/div&gt;</summary>
		<author><name>Tempusfugit</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.the-reincarnation.org/index.php?title=Holy_Hand_Grenade&amp;diff=49280</id>
		<title>Holy Hand Grenade</title>
		<link rel="alternate" type="text/html" href="https://wiki.the-reincarnation.org/index.php?title=Holy_Hand_Grenade&amp;diff=49280"/>
		<updated>2015-06-10T04:45:42Z</updated>

		<summary type="html">&lt;p&gt;Tempusfugit: /* Effects */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Itemstats&lt;br /&gt;
| description   = &amp;lt;i&amp;gt;&amp;quot;And Saint Attila raised the hand grenade up on high, saying, 'O Lord, bless this Thy hand grenade that, with it, Thou mayest blow Thine enemies to tiny bits in Thy mercy.' And the Lord did grin...&amp;quot;&amp;lt;/i&amp;gt;&amp;lt;br&amp;gt; - The Book of Armaments 2:9-10&lt;br /&gt;
}}&lt;br /&gt;
&amp;quot;&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
And Saint Attila raised the hand grenade up on high, saying, 'O Lord, bless this Thy hand grenade that, with it, Thou mayest blow Thine enemies to tiny bits in Thy mercy.' And the Lord did grin...&amp;quot;&amp;lt;br&amp;gt;&lt;br /&gt;
- The Book of Armaments 2:9-10&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
Attribute: 	UNIQUE ONEUSE&amp;lt;br&amp;gt;&lt;br /&gt;
Charge Turn:	0 &amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Effects==&lt;br /&gt;
Destroys one random enemy stack.&lt;br /&gt;
&lt;br /&gt;
Does not deal damage, just destroys a stack, therefore a hero leading the destroyed stack will never be killed&lt;br /&gt;
&lt;br /&gt;
http://www.the-reincarnation.com/viewtopic.php?f=2&amp;amp;t=34255&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
Here's an example from a battle report:&lt;br /&gt;
&lt;br /&gt;
Enemy (#) used Holy Hand Grenade . . . Trojan (#163)'s 27832 Medusas are slain &amp;lt;-- that was my entire 4th stack&amp;lt;noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Tempusfugit</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.the-reincarnation.org/index.php?title=Holy_Hand_Grenade&amp;diff=49279</id>
		<title>Holy Hand Grenade</title>
		<link rel="alternate" type="text/html" href="https://wiki.the-reincarnation.org/index.php?title=Holy_Hand_Grenade&amp;diff=49279"/>
		<updated>2015-06-10T04:44:23Z</updated>

		<summary type="html">&lt;p&gt;Tempusfugit: /* Effects */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Itemstats&lt;br /&gt;
| description   = &amp;lt;i&amp;gt;&amp;quot;And Saint Attila raised the hand grenade up on high, saying, 'O Lord, bless this Thy hand grenade that, with it, Thou mayest blow Thine enemies to tiny bits in Thy mercy.' And the Lord did grin...&amp;quot;&amp;lt;/i&amp;gt;&amp;lt;br&amp;gt; - The Book of Armaments 2:9-10&lt;br /&gt;
}}&lt;br /&gt;
&amp;quot;&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
And Saint Attila raised the hand grenade up on high, saying, 'O Lord, bless this Thy hand grenade that, with it, Thou mayest blow Thine enemies to tiny bits in Thy mercy.' And the Lord did grin...&amp;quot;&amp;lt;br&amp;gt;&lt;br /&gt;
- The Book of Armaments 2:9-10&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
Attribute: 	UNIQUE ONEUSE&amp;lt;br&amp;gt;&lt;br /&gt;
Charge Turn:	0 &amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Effects==&lt;br /&gt;
Destroys one random enemy stack.&lt;br /&gt;
&lt;br /&gt;
Does not deal damage, just destroys a stack, therefore a hero leading the destroyed stack will never be killed&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
Here's an example from a battle report:&lt;br /&gt;
&lt;br /&gt;
Enemy (#) used Holy Hand Grenade . . . Trojan (#163)'s 27832 Medusas are slain &amp;lt;-- that was my entire 4th stack&amp;lt;noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Tempusfugit</name></author>
		
	</entry>
</feed>