<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE MudletPackage>
<MudletPackage version="1.0">
    <TriggerPackage>
        <TriggerGroup isActive="yes" isFolder="yes" isTempTrigger="no" isMultiline="no" isPerlSlashGOption="no" isColorizerTrigger="no" isFilterTrigger="no" isSoundTrigger="no" isColorTrigger="no" isColorTriggerFg="no" isColorTriggerBg="no">
            <name>date plant subbing</name>
            <script></script>
            <triggerType>0</triggerType>
            <conditonLineDelta>39</conditonLineDelta>
            <mStayOpen>0</mStayOpen>
            <mCommand></mCommand>
            <mFgColor>#ff0000</mFgColor>
            <mBgColor>#ffff00</mBgColor>
            <mSoundFile></mSoundFile>
            <colorTriggerFgColor>#000000</colorTriggerFgColor>
            <colorTriggerBgColor>#000000</colorTriggerBgColor>
            <regexCodeList/>
            <regexCodePropertyList/>
            <Trigger isActive="yes" isFolder="no" isTempTrigger="no" isMultiline="no" isPerlSlashGOption="no" isColorizerTrigger="no" isFilterTrigger="no" isSoundTrigger="no" isColorTrigger="no" isColorTriggerFg="no" isColorTriggerBg="no">
                <name>date line 2 gag</name>
                <script>deleteLine()</script>
                <triggerType>0</triggerType>
                <conditonLineDelta>0</conditonLineDelta>
                <mStayOpen>0</mStayOpen>
                <mCommand></mCommand>
                <mFgColor>#ff0000</mFgColor>
                <mBgColor>#ffff00</mBgColor>
                <mSoundFile></mSoundFile>
                <colorTriggerFgColor>#000000</colorTriggerFgColor>
                <colorTriggerBgColor>#000000</colorTriggerBgColor>
                <regexCodeList>
                    <string>^\w+[,|] the \d+\w+ of \w+, in the year \d+.$</string>
                    <string>^the \d+\w+ of \w+, in the year \d+.$</string>
                </regexCodeList>
                <regexCodePropertyList>
                    <integer>1</integer>
                    <integer>1</integer>
                </regexCodePropertyList>
            </Trigger>
            <Trigger isActive="yes" isFolder="no" isTempTrigger="no" isMultiline="no" isPerlSlashGOption="no" isColorizerTrigger="no" isFilterTrigger="no" isSoundTrigger="no" isColorTrigger="no" isColorTriggerFg="no" isColorTriggerBg="no">
                <name>plant date trigger</name>
                <script>deleteLine()
local outputstring = &quot;&quot;
echo(&quot;\nIt is the &quot;..matches[2]..matches[3]..&quot; day of &quot;..matches[4]..&quot;.&quot;)
echo(&quot;\nIt is the &quot;..months[matches[4]]..&quot; of &quot;..matches[5]..&quot;.\n&quot;)
for k,v in pairs(plantdb) do
--	echo(v[&quot;letum&quot;]==false and &quot;false&quot; or &quot;true&quot;)
	if v[string.lower(matches[4])] then
			outputstring = outputstring..&quot;\n&quot;..string.format(&quot;| %13s | %11s |&quot;,k,plantloc[k])
	end
end
if outputstring~=&quot;&quot; then
	echo(&quot;\n+-----------------------------+\n|  Plants grown this month:   |\n+-----------------------------+\n|     Plant     | Environment |\n+---------------+-------------+&quot;..outputstring..&quot;\n+---------------+-------------+&quot;)
else
	echo(&quot;No plants grow this month.&quot;)
end
</script>
                <triggerType>0</triggerType>
                <conditonLineDelta>39</conditonLineDelta>
                <mStayOpen>0</mStayOpen>
                <mCommand></mCommand>
                <mFgColor>#ff0000</mFgColor>
                <mBgColor>#ffff00</mBgColor>
                <mSoundFile></mSoundFile>
                <colorTriggerFgColor>#000000</colorTriggerFgColor>
                <colorTriggerBgColor>#000000</colorTriggerBgColor>
                <regexCodeList>
                    <string>^Today is the (\d+)(\w+) day of (\w+), in the year (\d+) AD.*$</string>
                </regexCodeList>
                <regexCodePropertyList>
                    <integer>1</integer>
                </regexCodePropertyList>
            </Trigger>
        </TriggerGroup>
    </TriggerPackage>
    <TimerPackage/>
    <AliasPackage/>
    <ActionPackage/>
    <ScriptPackage>
        <Script isActive="yes" isFolder="no">
            <name>monthly plant handling stuff</name>
            <script>-- Table to show the season
months = {Ferinus=&quot;spring&quot;,Solis=&quot;summer&quot;,Artificium=&quot;autumn&quot;,Aequitas=&quot;autumn&quot;,Bellum=&quot;autumn&quot;,Tenebrae=&quot;winter&quot;,Vita=&quot;spring&quot;,Fas=&quot;spring&quot;,Letum=&quot;winter&quot;,Ultio=&quot;winter&quot;,Naturalis=&quot;summer&quot;,Halitus=&quot;summer&quot;}
-- plants and the months they grow
plantdb = {
fenugreek={letum=false,tenebrae=false,vita=false,fas=false,ferinus=false,naturalis=true,solis=false,halitus=false,artificium=false,bellum=false,aequitas=false,ultio=false},
juniper={letum=false,tenebrae=false,vita=true,fas=false,ferinus=false,naturalis=false,solis=false,halitus=false,artificium=false,bellum=false,aequitas=false,ultio=false},
nightshade={letum=false,tenebrae=false,vita=false,fas=false,ferinus=false,naturalis=false,solis=true,halitus=true,artificium=true,bellum=true,aequitas=true,ultio=false},
mandrake={letum=false,tenebrae=false,vita=false,fas=false,ferinus=false,naturalis=false,solis=true,halitus=true,artificium=true,bellum=true,aequitas=true,ultio=false},
spearwort={letum=false,tenebrae=false,vita=false,fas=false,ferinus=true,naturalis=false,solis=false,halitus=false,artificium=false,bellum=false,aequitas=false,ultio=false},
pear={letum=false,tenebrae=false,vita=false,fas=false,ferinus=false,naturalis=true,solis=false,halitus=false,artificium=false,bellum=false,aequitas=false,ultio=false},
kelp={letum=false,tenebrae=false,vita=false,fas=false,ferinus=true,naturalis=true,solis=true,halitus=true,artificium=true,bellum=false,aequitas=false,ultio=false},
lovage={letum=false,tenebrae=false,vita=false,fas=false,ferinus=true,naturalis=true,solis=true,halitus=true,artificium=true,bellum=false,aequitas=false,ultio=false},
galingale={letum=false,tenebrae=false,vita=false,fas=false,ferinus=true,naturalis=true,solis=true,halitus=true,artificium=true,bellum=false,aequitas=false,ultio=false},
weed={letum=false,tenebrae=false,vita=true,fas=true,ferinus=true,naturalis=true,solis=true,halitus=false,artificium=false,bellum=false,aequitas=false,ultio=false},
moonwort={letum=false,tenebrae=false,vita=false,fas=false,ferinus=false,naturalis=false,solis=true,halitus=false,artificium=false,bellum=false,aequitas=false,ultio=false},
quince={letum=false,tenebrae=false,vita=false,fas=false,ferinus=true,naturalis=false,solis=false,halitus=false,artificium=false,bellum=false,aequitas=false,ultio=false},
hyssop={letum=false,tenebrae=false,vita=false,fas=true,ferinus=false,naturalis=false,solis=false,halitus=false,artificium=false,bellum=false,aequitas=false,ultio=false},
ribwort={letum=false,tenebrae=false,vita=true,fas=false,ferinus=false,naturalis=false,solis=false,halitus=false,artificium=false,bellum=false,aequitas=false,ultio=false},
ginger={letum=false,tenebrae=false,vita=false,fas=false,ferinus=false,naturalis=false,solis=true,halitus=true,artificium=true,bellum=true,aequitas=true,ultio=false},
olive={letum=false,tenebrae=false,vita=false,fas=false,ferinus=false,naturalis=false,solis=true,halitus=true,artificium=true,bellum=true,aequitas=true,ultio=false},
laurel={letum=false,tenebrae=false,vita=true,fas=false,ferinus=false,naturalis=false,solis=false,halitus=false,artificium=false,bellum=false,aequitas=false,ultio=false},
dandelion={letum=false,tenebrae=false,vita=true,fas=true,ferinus=true,naturalis=true,solis=true,halitus=false,artificium=false,bellum=false,aequitas=false,ultio=false},
maidenhair={letum=false,tenebrae=false,vita=false,fas=false,ferinus=true,naturalis=true,solis=true,halitus=true,artificium=true,bellum=false,aequitas=false,ultio=false},
violet={letum=false,tenebrae=false,vita=true,fas=true,ferinus=true,naturalis=true,solis=true,halitus=false,artificium=false,bellum=false,aequitas=false,ultio=false},
orphine={letum=false,tenebrae=false,vita=false,fas=false,ferinus=true,naturalis=true,solis=true,halitus=true,artificium=true,bellum=false,aequitas=false,ultio=false},
endive={letum=false,tenebrae=false,vita=false,fas=false,ferinus=false,naturalis=false,solis=true,halitus=true,artificium=true,bellum=true,aequitas=true,ultio=false},
wormwood={letum=false,tenebrae=false,vita=false,fas=false,ferinus=true,naturalis=false,solis=false,halitus=false,artificium=false,bellum=false,aequitas=false,ultio=false},
linseed={letum=false,tenebrae=false,vita=false,fas=false,ferinus=false,naturalis=false,solis=true,halitus=true,artificium=true,bellum=true,aequitas=true,ultio=false},
blueberry={letum=false,tenebrae=false,vita=false,fas=false,ferinus=true,naturalis=true,solis=true,halitus=true,artificium=true,bellum=false,aequitas=false,ultio=false},
primrose={letum=false,tenebrae=false,vita=true,fas=true,ferinus=true,naturalis=true,solis=true,halitus=false,artificium=false,bellum=false,aequitas=false,ultio=false},
myrrh={letum=false,tenebrae=false,vita=false,fas=true,ferinus=false,naturalis=false,solis=false,halitus=false,artificium=false,bellum=false,aequitas=false,ultio=false},
toadstool={letum=false,tenebrae=false,vita=true,fas=true,ferinus=true,naturalis=true,solis=true,halitus=false,artificium=false,bellum=false,aequitas=false,ultio=false}
}
-- plant locations
plantloc = {olive=&quot;desert&quot;,pear=&quot;desert&quot;,weed=&quot;desert&quot;,ginger=&quot;forest&quot;,laurel=&quot;forest&quot;,moonwort=&quot;forest&quot;,myrrh=&quot;forest&quot;,nightshade=&quot;forest&quot;,orphine=&quot;forest&quot;,primrose=&quot;forest&quot;,dandelion=&quot;grasslands&quot;,mandrake=&quot;grasslands&quot;,ribwort=&quot;grasslands&quot;,hyssop=&quot;hills&quot;,juniper=&quot;hills&quot;,endive=&quot;jungle&quot;,linseed=&quot;jungle&quot;,quince=&quot;jungle&quot;,blueberry=&quot;mountains&quot;,lovage=&quot;mountains&quot;,kelp=&quot;saltwater&quot;,galingale=&quot;swamp&quot;,spearwort=&quot;swamp&quot;,violet=&quot;swamp&quot;,wormwood=&quot;swamp&quot;,fenugreek=&quot;valley&quot;,maidenhair=&quot;underground&quot;,toadstool=&quot;underground&quot;}</script>
            <eventHandlerList/>
        </Script>
    </ScriptPackage>
    <KeyPackage/>
</MudletPackage>
