module Hydrocraft
{
    imports
    {
        Base

    }

/************************ITEMS************************/


item HCComputerdesktop
    {
	Weight             	= 20,
        Type    		= Normal,
        DisplayName         	= Desktop Computer,
        icon 			= HCComputerdesktop,
	ResizeWorldIcon 	= 2.0,
    }


item HCFloppy
    {
        Weight    		= 0.1,
        Type    		= Normal,
        DisplayName         	= Floppy Disk,
        icon 			= HCFloppy,
    }

item HCFloppyevosim
    {
        Weight    		= 0.1,
        Type    		= Normal,
        DisplayName         	= Floppy Disk with Evolution Simulator,
        icon 			= HCFloppyfull,
    }

item HCFloppygesture
    {
        Weight    		= 0.1,
        Type    		= Normal,
        DisplayName         	= Floppy Disk with Gesture Recognition Software,
        icon 			= HCFloppyfull,
    }

item HCFloppyvoice
    {
        Weight    		= 0.1,
        Type    		= Normal,
        DisplayName         	= Floppy Disk with Voice Recognition Software,
        icon 			= HCFloppyfull,
    }

/************************RECIPES************************/	

recipe Make Desktop Computer
    {
	SkillRequired:Electricity=1,
        HCComputermonitor,
        HCComputer,
	HCComputerkeyboard,
	HCComputermouse,
	HCMousepad,
	HCPowercord,
	HCTablewood,
	Generator,
        CanBeDoneFromFloor:true,
        NeedToBeLearn:true,
	Result:HCComputerdesktop,
	Time:1000,
        Category:Electrical,
       	OnGiveXP:DismantleElectronics_OnGiveXP,
    }

recipe Write Computer Program
    {
	SkillRequired:Electricity=5,
	PetrolCan,
	HCFloppy,
	keep HCBookbiology,
	keep HCBookmicrobiology,
	keep HCBookorganicchemistry,
	keep HCBookecology,
	keep HCComputerdesktop,
        CanBeDoneFromFloor:true,
        NeedToBeLearn:true,
	Result:HCFloppyevosim,
	Time:1000,
        Category:Programing,
       	OnGiveXP:DismantleElectronics_OnGiveXP,
    }

recipe Write Computer Program
    {
	SkillRequired:Electricity=6,
	PetrolCan,
	HCFloppy,
	keep HCBookcalculus,
	keep HCBookanthropology,
	keep HCBooksociology,
	keep HCBookcommunications,
	keep HCBookanatomy,
	keep HCComputerdesktop,
        CanBeDoneFromFloor:true,
        NeedToBeLearn:true,
	Result:HCFloppygesture,
	Time:2000,
        Category:Programing,
       	OnGiveXP:DismantleElectronics_OnGiveXP,
    }

recipe Write Computer Program
    {
	SkillRequired:Electricity=6,
	PetrolCan,
	HCFloppy,
	keep HCBookcalculus,
	keep HCBookanthropology,
	keep HCBooksociology,
	keep HCBookcommunications,
	keep HCBookmusic,
	keep HCComputerdesktop,
        CanBeDoneFromFloor:true,
        NeedToBeLearn:true,
	Result:HCFloppyvoice,
	Time:2000,
        Category:Programing,
       	OnGiveXP:DismantleElectronics_OnGiveXP,
    }

}