The Wiki for Tale 8 is in read-only mode and is available for archival and reference purposes only. Please visit the current Tale 11 Wiki in the meantime.

If you have any issues with this Wiki, please post in #wiki-editing on Discord or contact Brad in-game.

Difference between revisions of "Guild:Senou/Treatments"

From A Wiki in the Desert
Jump to navigation Jump to search
m
Line 61: Line 61:
 
|-  
 
|-  
 
|}
 
|}
 +
 +
= Treatment Tests =
 +
function isRigid()
 +
return flexibility < ? ;
 +
end
 +
 +
function isPliable()
 +
return flexibility > ? ;
 +
end
 +
 +
function isHard()
 +
return cuttability < ? ;
 +
end
 +
 +
function isSoft()
 +
return cuttability > ? ;
 +
end
 +
 +
function isFireproof()
 +
return flammability < ?  ;
 +
end
 +
 +
function isVolatile()
 +
return flammability > ? ;
 +
end
 +
 +
function isRotproof()
 +
return waterResist > 61 ;
 +
end
 +
 +
function isTermiteProne()
 +
return insectTox < ? ;
 +
end
 +
 +
function isTermiteResistant()
 +
return insectTox > ? ;
 +
end
 +
 +
function isNonToxic()
 +
return humanTox < ? ;
 +
end
 +
 +
function isWhite()
 +
return darkness < ? ;
 +
end
 +
 +
function isBlonde()
 +
return (darkness > ?) and (darkness < 22) ;
 +
end
 +
 +
function isBlack()
 +
return darkness > ? ;
 +
end
 +
 +
function isGlossy()
 +
return glossiness > ? ;
 +
end

Revision as of 17:09, 18 June 2018

Senou Image Guild Facilities Guild Projects Trading Citrus Data Treatment Recipes Paint Recipes Local Resources


Treatment Values (kValues)

Property kValue Value (Reagent)
Flexibility 5.27902240325 490s (Bonemeal)
Cuttability ?
Flammability ?
Water Resist 4.54736842105 570s (Jugs of Water)
Insect Tox 4.54736842105 570s (Lead)
Human Tox ?
Darkness ?
Glossiness 5.15243902439 410s (Beeswax)

Silkworm Farm

Treatment Recipe (Deben Value) Treatment Time (Second Value)
Non-Toxic 1 Jug of Water 10 Seconds

Thistle Garden

Treatment Recipe (Deben Value) Treatment Time (Second Value)
Rotproof Termite-resistant 6 Sulfur, 2 Oil, 7 Petroleum 55 Sulfur, 20 Oil, 70 Petroleum (145 Secs)
Rotproof Non-Toxic 7 Water, 4 Sulfur, 3 Oil, 3 Beeswax 40 Water, 40 Sulfur, 30 Oil, 10 Water, 20 Beeswax, 5 Water (145 secs)

Ant Colony

Treatment Recipe (Deben Value) Treatment Time (Second Value)
Nontoxic Termite-resistant 7 Sulfur, 3 Saltpeter, 1 Petroleum 70 Sulfur, 30 Saltpeter, 10 Petroleum (110 Secs)

Master Schooner

Treatment Recipe (Deben Value) Treatment Time (Second Value)
Rotproof Glossy 3 Sulfur, 4 Water, 4 Oil, 3 Petroleum, 5 Beeswax 30 Sulfur, 40 Water, 40 Oil, 30 Petrol, 50 Beeswax (190 Secs)

Treatment Tests

function isRigid() return flexibility < ? ; end

function isPliable() return flexibility > ? ; end

function isHard() return cuttability < ? ; end

function isSoft() return cuttability > ? ; end

function isFireproof() return flammability < ? ; end

function isVolatile() return flammability > ? ; end

function isRotproof() return waterResist > 61 ; end

function isTermiteProne() return insectTox < ? ; end

function isTermiteResistant() return insectTox > ? ; end

function isNonToxic() return humanTox < ? ; end

function isWhite() return darkness < ? ; end

function isBlonde() return (darkness > ?) and (darkness < 22) ; end

function isBlack() return darkness > ? ; end

function isGlossy() return glossiness > ? ; end