Allow for separate equipment positions on body
This commit is contained in:
@@ -182,3 +182,25 @@ jetPack = defaultEquipment
|
||||
, _itEffect = NoItEffect
|
||||
, _itID = Nothing
|
||||
}
|
||||
|
||||
powerLegs :: Item
|
||||
powerLegs = defaultEquipment
|
||||
{ _itType = POWERLEGS
|
||||
, _itName = "POWERLEGS"
|
||||
, _itUse = EquipUse
|
||||
{_eqUse = \_ _ -> id
|
||||
,_eqSite = GoesOnLegs
|
||||
}
|
||||
, _itEffect = NoItEffect
|
||||
, _itID = Nothing
|
||||
}
|
||||
speedLegs :: Item
|
||||
speedLegs = powerLegs
|
||||
{ _itType = SPEEDLEGS
|
||||
, _itName = "SPEEDLEGS"
|
||||
}
|
||||
jumpLegs :: Item
|
||||
jumpLegs = powerLegs
|
||||
{ _itType = JUMPLEGS
|
||||
, _itName = "JUMPLEGS"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user