Add force field gun

This commit is contained in:
2022-05-26 13:17:51 +01:00
parent 58427da0c4
commit 5c41e2823e
7 changed files with 56 additions and 12 deletions
+17
View File
@@ -0,0 +1,17 @@
module Dodge.Wall.ForceField where
import Dodge.Data
import Dodge.Default.Wall
import Color
forceField :: Wall
forceField = defaultWall
{_wlColor = orange
,_wlOpacity = SeeAbove
,_wlPathable = True
,_wlWalkable = True
,_wlFireThrough = True
,_wlReflect = True
,_wlDraw = True
,_wlRotateTo = False
,_wlStructure = StandaloneWall
}