<?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=Meavic</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=Meavic"/>
	<link rel="alternate" type="text/html" href="https://wiki.the-reincarnation.org/Special:Contributions/Meavic"/>
	<updated>2026-04-28T08:45:37Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.31.0</generator>
	<entry>
		<id>https://wiki.the-reincarnation.org/index.php?title=Lightning:Spellnav&amp;diff=50030</id>
		<title>Lightning:Spellnav</title>
		<link rel="alternate" type="text/html" href="https://wiki.the-reincarnation.org/index.php?title=Lightning:Spellnav&amp;diff=50030"/>
		<updated>2017-01-30T06:34:00Z</updated>

		<summary type="html">&lt;p&gt;Meavic: Created page with &amp;quot;{{Lightning:navigation}} &amp;lt;center&amp;gt; {{red}} Eradication |  {{green}} Verdant |  {{white}} [[:...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Lightning:navigation}}&lt;br /&gt;
&amp;lt;center&amp;gt;&lt;br /&gt;
{{red}} [[:Category:Eradication Spells (Lightning)|Eradication]] | &lt;br /&gt;
{{green}} [[:Category: Verdant Spells (Lightning)|Verdant]] | &lt;br /&gt;
{{white}} [[:Category:Ascendant Spells (Lightning)|Ascendant]] | &lt;br /&gt;
{{blue}} [[:Category:Phantasm Spells (Lightning)|Phantasm]] | &lt;br /&gt;
{{black}} [[:Category:Nether Spells (Lightning)|Nether]] | &lt;br /&gt;
{{plain}} [[:Category:Plain Spells (Lightning)|Plain]]&lt;br /&gt;
&amp;lt;/center&amp;gt;&lt;br /&gt;
&amp;lt;center&amp;gt;&lt;br /&gt;
[[:Category:Spell attributes|Spell Attributes]] | &lt;br /&gt;
[[:Category:Simple Spells (Lightning)|Lists of Simple]], [[:Category:Average Spells (Lightning)|Average]], [[:Category:Complex Spells (Lightning)|Complex]], [[:Category:Ultimate Spells (Lightning)|Ultimate]] &amp;amp; [[:Category:Ancient Spells (Lightning)|Ancient Spells]]&lt;br /&gt;
&amp;lt;/center&amp;gt;&lt;br /&gt;
&amp;lt;noinclude&amp;gt;[[Category:Navigation Templates (Lightning)| {{PAGENAME}}]]&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Meavic</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.the-reincarnation.org/index.php?title=Barriers&amp;diff=50029</id>
		<title>Barriers</title>
		<link rel="alternate" type="text/html" href="https://wiki.the-reincarnation.org/index.php?title=Barriers&amp;diff=50029"/>
		<updated>2017-01-30T06:19:30Z</updated>

		<summary type="html">&lt;p&gt;Meavic: Undo revision 49289 by Tempusfugit (talk)&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;
&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>Meavic</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.the-reincarnation.org/index.php?title=Demon&amp;diff=18662</id>
		<title>Demon</title>
		<link rel="alternate" type="text/html" href="https://wiki.the-reincarnation.org/index.php?title=Demon&amp;diff=18662"/>
		<updated>2009-11-14T05:22:06Z</updated>

		<summary type="html">&lt;p&gt;Meavic: Redirecting to Category:Demons&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#redirect [[:Category:Demons]]&lt;/div&gt;</summary>
		<author><name>Meavic</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.the-reincarnation.org/index.php?title=Unholy_Reaver&amp;diff=18661</id>
		<title>Unholy Reaver</title>
		<link rel="alternate" type="text/html" href="https://wiki.the-reincarnation.org/index.php?title=Unholy_Reaver&amp;diff=18661"/>
		<updated>2009-11-14T05:19:00Z</updated>

		<summary type="html">&lt;p&gt;Meavic: Converted to template&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Unitstats&lt;br /&gt;
&lt;br /&gt;
| description   = A traitorous fallen dominion that was corrupted has past down the knowledge of how to unlock the depths of Hell. Unleashing one of the worst manifestations of Hell...Unholy Reavers. These creatures rival the Titans in size and power. Their wicked, heartless goa ls are nothing less than domination of Terra. They pretend to serve their summoner as it suits their will as well.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
| infoboxcolor  = &lt;br /&gt;
| labelcolor    = {{Color Nether}}&lt;br /&gt;
| color         = [[Nether]]&lt;br /&gt;
| race          = [[Demon]]&lt;br /&gt;
| attrib        = [[SUMMON]] [[UNDISBANDABLE]] [[NOMARKET]]&lt;br /&gt;
| power         = 50,000&lt;br /&gt;
| ap            = 210,000&lt;br /&gt;
| type          = [[Melee]] [[Paralyse]]&lt;br /&gt;
| init          = 2&lt;br /&gt;
| counter       = 30,000&lt;br /&gt;
| xap           = 235,000&lt;br /&gt;
| xtype         = [[Psychic]] [[Ranged]]&lt;br /&gt;
| xinit         = 3&lt;br /&gt;
| hp            = 85,000&lt;br /&gt;
| recruit       = -&lt;br /&gt;
| upkeep        = 62.5 M.P., 70.00 Population&lt;br /&gt;
| ability       = [[Additional Strike]], [[Endurance]], [[Fear]], [[Marksmanship]]&lt;br /&gt;
| spell         = [[Summon Unholy Reaver]]&lt;br /&gt;
| item          = -&lt;br /&gt;
| white         = 80&lt;br /&gt;
| green         = 0&lt;br /&gt;
| red           = 80&lt;br /&gt;
| black         = 80&lt;br /&gt;
| blue          = 40&lt;br /&gt;
| missile       = 95&lt;br /&gt;
| fire          = 50&lt;br /&gt;
| poison        = 70&lt;br /&gt;
| breath        = 70&lt;br /&gt;
| magic         = 70&lt;br /&gt;
| melee         = 95&lt;br /&gt;
| ranged        = 75&lt;br /&gt;
| cold          = 70&lt;br /&gt;
| lightning     = 70&lt;br /&gt;
| paralyze      = 85&lt;br /&gt;
| psychic       = 85&lt;br /&gt;
| holy          = 30&lt;br /&gt;
| image         = [[image:IntfNETHER.gif]]&lt;br /&gt;
| picmargin     = 150&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Units]]&lt;br /&gt;
[[Category:Nether Units]]&lt;br /&gt;
[[Category:Melee Units]]&lt;br /&gt;
[[Category:Paralyze Units]]&lt;br /&gt;
[[Category:Ranged Secondary Units]]&lt;br /&gt;
[[Category:Psychic Units]]&lt;br /&gt;
[[Category:Ultimates]]&lt;br /&gt;
[[Category:Demons]]&lt;br /&gt;
[[Category:Undisbandable]]&lt;/div&gt;</summary>
		<author><name>Meavic</name></author>
		
	</entry>
</feed>