<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="fr">
	<id>https://wikifield.fr/index.php?action=history&amp;feed=atom&amp;title=Module%3AIU</id>
	<title>Module:IU - Historique des versions</title>
	<link rel="self" type="application/atom+xml" href="https://wikifield.fr/index.php?action=history&amp;feed=atom&amp;title=Module%3AIU"/>
	<link rel="alternate" type="text/html" href="https://wikifield.fr/index.php?title=Module:IU&amp;action=history"/>
	<updated>2026-04-10T08:05:14Z</updated>
	<subtitle>Historique des versions pour cette page sur le wiki</subtitle>
	<generator>MediaWiki 1.43.5</generator>
	<entry>
		<id>https://wikifield.fr/index.php?title=Module:IU&amp;diff=1724&amp;oldid=prev</id>
		<title>Squirkiz : 1 révision importée</title>
		<link rel="alternate" type="text/html" href="https://wikifield.fr/index.php?title=Module:IU&amp;diff=1724&amp;oldid=prev"/>
		<updated>2019-10-11T00:29:18Z</updated>

		<summary type="html">&lt;p&gt;1 révision importée&lt;/p&gt;
&lt;table style=&quot;background-color: #fff; color: #202122;&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;fr&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← Version précédente&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;Version du 11 octobre 2019 à 00:29&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-notice&quot; lang=&quot;fr&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(Aucune différence)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>Squirkiz</name></author>
	</entry>
	<entry>
		<id>https://wikifield.fr/index.php?title=Module:IU&amp;diff=1723&amp;oldid=prev</id>
		<title>mcfr&gt;ObelusPA2 : ObelusPA2 a déplacé la page Module:MAJ/IU vers Module:IU sans laisser de redirection : Déploiement du nouveau module</title>
		<link rel="alternate" type="text/html" href="https://wikifield.fr/index.php?title=Module:IU&amp;diff=1723&amp;oldid=prev"/>
		<updated>2016-12-23T23:17:57Z</updated>

		<summary type="html">&lt;p&gt;ObelusPA2 a déplacé la page &lt;a href=&quot;/index.php?title=Module:MAJ/IU&amp;amp;action=edit&amp;amp;redlink=1&quot; class=&quot;new&quot; title=&quot;Module:MAJ/IU (page inexistante)&quot;&gt;Module:MAJ/IU&lt;/a&gt; vers &lt;a href=&quot;/wiki/Module:IU&quot; title=&quot;Module:IU&quot;&gt;Module:IU&lt;/a&gt; sans laisser de redirection : Déploiement du nouveau module&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Nouvelle page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;local slot = require( [[Module:Case inventaire]] ).slot&lt;br /&gt;
local addSlot = function( args, item, prefix, class, default )&lt;br /&gt;
	prefix = prefix or item&lt;br /&gt;
	return slot{&lt;br /&gt;
		args[item], mod = args.Mod, link = args[prefix .. &amp;#039;link&amp;#039;],&lt;br /&gt;
		title = args[prefix .. &amp;#039;title&amp;#039;], class = class, default = default,&lt;br /&gt;
		parsed = args.parsed&lt;br /&gt;
	}&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
local p = {}&lt;br /&gt;
&lt;br /&gt;
-- Établi&lt;br /&gt;
function p.craftingTable( f )&lt;br /&gt;
	local args = f&lt;br /&gt;
	if f == mw.getCurrentFrame() then&lt;br /&gt;
		args = f:getParent().args&lt;br /&gt;
	else&lt;br /&gt;
		f = mw.getCurrentFrame()&lt;br /&gt;
	end&lt;br /&gt;
	&lt;br /&gt;
	local body = mw.html.create( &amp;#039;span&amp;#039; ):addClass( &amp;#039;mcui mcui-Crafting_Table&amp;#039; )&lt;br /&gt;
	&lt;br /&gt;
	local input = body:tag( &amp;#039;span&amp;#039; ):addClass( &amp;#039;mcui-input&amp;#039; )&lt;br /&gt;
	for num = 1, 3 do&lt;br /&gt;
		local row = input:tag( &amp;#039;span&amp;#039; ):addClass( &amp;#039;mcui-row&amp;#039; )&lt;br /&gt;
		for _, letter in ipairs{ &amp;#039;A&amp;#039;, &amp;#039;B&amp;#039;, &amp;#039;C&amp;#039; } do&lt;br /&gt;
			row:wikitext( addSlot( args, letter .. num ) )&lt;br /&gt;
		end&lt;br /&gt;
	end&lt;br /&gt;
	&lt;br /&gt;
	local arrow = body:tag( &amp;#039;span&amp;#039; ):addClass( &amp;#039;mcui-arrow&amp;#039; ):tag( &amp;#039;br&amp;#039; ):done()&lt;br /&gt;
	if args.arrow or &amp;#039;&amp;#039; ~= &amp;#039;&amp;#039; then&lt;br /&gt;
		arrow:css(&lt;br /&gt;
			&amp;#039;background-image&amp;#039;,&lt;br /&gt;
			&amp;#039;{{FileUrl|&amp;#039; .. args.arrow .. &amp;#039; (&amp;#039; .. args.Mod .. &amp;#039;).png}}&amp;#039;&lt;br /&gt;
		)&lt;br /&gt;
	end&lt;br /&gt;
	&lt;br /&gt;
	body&lt;br /&gt;
		:tag( &amp;#039;span&amp;#039; )&lt;br /&gt;
			:addClass( &amp;#039;mcui-output&amp;#039; )&lt;br /&gt;
			:wikitext( addSlot( args, &amp;#039;résultat&amp;#039;, &amp;#039;O&amp;#039;, &amp;#039;invslot-large&amp;#039; ) )&lt;br /&gt;
	&lt;br /&gt;
	local shapeless = args.shapeless or &amp;#039;&amp;#039;&lt;br /&gt;
	local fixed = args.fixed or &amp;#039;&amp;#039;&lt;br /&gt;
	if shapeless ~= &amp;#039;&amp;#039; or fixed ~= &amp;#039;&amp;#039; then&lt;br /&gt;
		local icon = body:tag( &amp;#039;span&amp;#039; )&lt;br /&gt;
			:addClass( &amp;#039;mcui-icons&amp;#039; )&lt;br /&gt;
			:tag( &amp;#039;span&amp;#039; )&lt;br /&gt;
				:tag( &amp;#039;br&amp;#039; )&lt;br /&gt;
			:done()&lt;br /&gt;
		if shapeless ~= &amp;#039;&amp;#039; then&lt;br /&gt;
			icon:addClass( &amp;#039;mcui-shapeless&amp;#039; )&lt;br /&gt;
				:attr( &amp;#039;title&amp;#039;,&lt;br /&gt;
					&amp;#039;Les ingrédients peuvent être placés partout sur la grille.&amp;#039;&lt;br /&gt;
				)&lt;br /&gt;
		elseif fixed ~= &amp;#039;&amp;#039; then&lt;br /&gt;
			local notFixed = args.notfixed or &amp;#039;&amp;#039;&lt;br /&gt;
			local exceptFixed = &amp;#039;&amp;#039;&lt;br /&gt;
			if notFixed ~= &amp;#039;&amp;#039; then&lt;br /&gt;
				exceptFixed = &amp;#039;, à l\&amp;#039;exeption de &amp;#039; .. notFixed .. &amp;#039;, qui peut être placé n\&amp;#039;importe où&amp;#039;&lt;br /&gt;
			end&lt;br /&gt;
			&lt;br /&gt;
			icon:addClass( &amp;#039;mcui-fixed&amp;#039; )&lt;br /&gt;
				:attr( &amp;#039;title&amp;#039;,&lt;br /&gt;
					&amp;#039;Cette recette est fixe, la disposition des ingrédients ne peut pas être modifiée ou inversée&amp;#039; .. exceptFixed .. &amp;#039;.&amp;#039;&lt;br /&gt;
				)&lt;br /&gt;
		end&lt;br /&gt;
	end&lt;br /&gt;
	&lt;br /&gt;
	return tostring( mw.html.create( &amp;#039;div&amp;#039; ):node( body ) )&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
-- Fourneau&lt;br /&gt;
function p.furnace( f )&lt;br /&gt;
	local args = f&lt;br /&gt;
	if f == mw.getCurrentFrame() then&lt;br /&gt;
		args = f:getParent().args&lt;br /&gt;
	else&lt;br /&gt;
		f = mw.getCurrentFrame()&lt;br /&gt;
	end&lt;br /&gt;
	&lt;br /&gt;
	local body = mw.html.create( &amp;#039;span&amp;#039; ):addClass( &amp;#039;mcui mcui-Furnace&amp;#039; )&lt;br /&gt;
	&lt;br /&gt;
	local input = body:tag( &amp;#039;span&amp;#039; ):addClass( &amp;#039;mcui-input&amp;#039; )&lt;br /&gt;
	input:wikitext( addSlot( args, &amp;#039;ingrédient&amp;#039;, &amp;#039;I&amp;#039; ) )&lt;br /&gt;
	local fuel = input:tag( &amp;#039;span&amp;#039; ):addClass( &amp;#039;mcui-fuel&amp;#039; ):tag( &amp;#039;br&amp;#039; ):done()&lt;br /&gt;
	local fuelImg = args.FuelUsage or &amp;#039;&amp;#039;&lt;br /&gt;
	local burning = args[&amp;#039;ingrédient&amp;#039;] or &amp;#039;&amp;#039; ~= &amp;#039;&amp;#039; and args.combustible or &amp;#039;&amp;#039; ~= &amp;#039;&amp;#039;&lt;br /&gt;
	if not burning then&lt;br /&gt;
		fuel:addClass( &amp;#039;mcui-inactive&amp;#039; )&lt;br /&gt;
		if fuelImg ~= &amp;#039;&amp;#039; then&lt;br /&gt;
			fuelImg = fuelImg .. &amp;#039; (in-active)&amp;#039;&lt;br /&gt;
		end&lt;br /&gt;
	end&lt;br /&gt;
	if fuelImg ~= &amp;#039;&amp;#039; then&lt;br /&gt;
		fuel:css(&lt;br /&gt;
			&amp;#039;background-image&amp;#039;,&lt;br /&gt;
			&amp;#039;{{FileUrl|&amp;#039; .. fuelImg .. &amp;#039; (&amp;#039; .. args.mod .. &amp;#039;).png}}&amp;#039;&lt;br /&gt;
		)&lt;br /&gt;
	end&lt;br /&gt;
	input:wikitext( addSlot( args, &amp;#039;combustible&amp;#039;, &amp;#039;F&amp;#039; ) )&lt;br /&gt;
	&lt;br /&gt;
	local arrow = body:tag( &amp;#039;span&amp;#039; ):addClass( &amp;#039;mcui-arrow&amp;#039; ):tag( &amp;#039;br&amp;#039; ):done()&lt;br /&gt;
	local arrowImg = args.Progress or &amp;#039;&amp;#039;&lt;br /&gt;
	if not burning or ( args[&amp;#039;résultat&amp;#039;] or &amp;#039;&amp;#039; ) == &amp;#039;&amp;#039; then&lt;br /&gt;
		arrow:addClass( &amp;#039;mcui-inactive&amp;#039; )&lt;br /&gt;
		if arrowImg ~= &amp;#039;&amp;#039; then&lt;br /&gt;
			arrowImg = arrowImg .. &amp;#039; (in-active)&amp;#039;&lt;br /&gt;
		end&lt;br /&gt;
	end&lt;br /&gt;
	if arrowImg ~= &amp;#039;&amp;#039; then&lt;br /&gt;
		arrow:css(&lt;br /&gt;
			&amp;#039;background-image&amp;#039;,&lt;br /&gt;
			&amp;#039;{{FileUrl|&amp;#039; .. arrowImg .. &amp;#039; Progress (&amp;#039; .. args.mod .. &amp;#039;).png}}&amp;#039;&lt;br /&gt;
		)&lt;br /&gt;
	end&lt;br /&gt;
	&lt;br /&gt;
	body&lt;br /&gt;
		:tag( &amp;#039;span&amp;#039; )&lt;br /&gt;
			:addClass( &amp;#039;mcui-output&amp;#039; )&lt;br /&gt;
			:wikitext( addSlot( args, &amp;#039;résultat&amp;#039;, &amp;#039;O&amp;#039;, &amp;#039;invslot-large&amp;#039; ) )&lt;br /&gt;
	&lt;br /&gt;
	return tostring( mw.html.create( &amp;#039;div&amp;#039; ):node( body ) )&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
-- Alambic&lt;br /&gt;
function p.brewingStand( f )&lt;br /&gt;
	local args = f&lt;br /&gt;
	if f == mw.getCurrentFrame() then&lt;br /&gt;
		args = f:getParent().args&lt;br /&gt;
	else&lt;br /&gt;
		f = mw.getCurrentFrame()&lt;br /&gt;
	end&lt;br /&gt;
	&lt;br /&gt;
	local body = mw.html.create( &amp;#039;span&amp;#039; ):addClass( &amp;#039;mcui mcui-Brewing_Stand&amp;#039; )&lt;br /&gt;
	&lt;br /&gt;
	local input = body:tag( &amp;#039;span&amp;#039; ):addClass( &amp;#039;mcui-input&amp;#039; )&lt;br /&gt;
	input:tag( &amp;#039;span&amp;#039; ):addClass( &amp;#039;mcui-bubbling&amp;#039; ):tag( &amp;#039;br&amp;#039; )&lt;br /&gt;
	input:wikitext( addSlot( args, &amp;#039;ingrédient&amp;#039;, &amp;#039;I&amp;#039; ) )&lt;br /&gt;
	input:tag( &amp;#039;span&amp;#039; ):addClass( &amp;#039;mcui-arrow&amp;#039; ):tag( &amp;#039;br&amp;#039; )&lt;br /&gt;
	if ( args[&amp;#039;ingrédient&amp;#039;] or &amp;#039;&amp;#039; ) == &amp;#039;&amp;#039; or&lt;br /&gt;
		( ( args[&amp;#039;résultat1&amp;#039;] or &amp;#039;&amp;#039; ) == &amp;#039;&amp;#039; and ( args[&amp;#039;résultat2&amp;#039;] or &amp;#039;&amp;#039; ) == &amp;#039;&amp;#039; and ( args[&amp;#039;résultat3&amp;#039;] or &amp;#039;&amp;#039; ) == &amp;#039;&amp;#039; )&lt;br /&gt;
	then&lt;br /&gt;
		input:addClass( &amp;#039;mcui-inactive&amp;#039; )&lt;br /&gt;
	end&lt;br /&gt;
	&lt;br /&gt;
	body:tag( &amp;#039;span&amp;#039; ):addClass( &amp;#039;mcui-paths&amp;#039; ):tag( &amp;#039;br&amp;#039; )&lt;br /&gt;
	&lt;br /&gt;
	local output = body:tag( &amp;#039;span&amp;#039; ):addClass( &amp;#039;mcui-output&amp;#039; )&lt;br /&gt;
	for i = 1, 3 do&lt;br /&gt;
		output:wikitext( addSlot( args, &amp;#039;résultat&amp;#039; .. i, &amp;#039;O&amp;#039; .. i, &amp;#039;mcui-output&amp;#039; .. i ) )&lt;br /&gt;
	end&lt;br /&gt;
	&lt;br /&gt;
	return tostring( mw.html.create( &amp;#039;div&amp;#039; ):node( body ) )&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
return p&lt;/div&gt;</summary>
		<author><name>mcfr&gt;ObelusPA2</name></author>
	</entry>
</feed>