mirror of
https://github.com/Jusctsch5/ironsphererpg.git
synced 2026-01-20 03:54:45 +00:00
Taking everything obtained from http://ironsphererpg2.webs.com/ and dumping it in a git repo
59 lines
1.2 KiB
C#
59 lines
1.2 KiB
C#
//rpgshapes2
|
|
//new shapes for the mod
|
|
//keep in alphabetical order pl0x
|
|
|
|
|
|
datablock StaticShapeData(DelkinSign)
|
|
{
|
|
catagory = "RPGMisc";
|
|
shapefile = "DelkinSign.dts";
|
|
mass = 10;
|
|
elasticity = 0.2;
|
|
friction = 0.6;
|
|
pickupRadius = 2;
|
|
};
|
|
datablock StaticShapeData(EthrenSign)
|
|
{
|
|
catagory = "RPGMisc";
|
|
shapefile = "EthrenSign.dts";
|
|
mass = 10;
|
|
elasticity = 0.2;
|
|
friction = 0.6;
|
|
pickupRadius = 2;
|
|
};
|
|
datablock StaticShapeData(JatenSign)
|
|
{
|
|
catagory = "RPGMisc";
|
|
shapefile = "JatenSign.dts";
|
|
mass = 10;
|
|
elasticity = 0.2;
|
|
friction = 0.6;
|
|
pickupRadius = 2;
|
|
};
|
|
datablock StaticShapeData(KeldrinSign)
|
|
{
|
|
catagory = "RPGMisc";
|
|
shapefile = "KeldrinSign.dts";
|
|
mass = 10;
|
|
elasticity = 0.2;
|
|
friction = 0.6;
|
|
pickupRadius = 2;
|
|
};
|
|
datablock StaticShapeData(KMinesSign)
|
|
{
|
|
catagory = "RPGMisc";
|
|
shapefile = "KMinesSign.dts";
|
|
mass = 10;
|
|
elasticity = 0.2;
|
|
friction = 0.6;
|
|
pickupRadius = 2;
|
|
};
|
|
datablock StaticShapeData(NoteSign)
|
|
{
|
|
catagory = "RPGMisc";
|
|
shapefile = "NoteSign.dts";
|
|
mass = 10;
|
|
elasticity = 0.2;
|
|
friction = 0.6;
|
|
pickupRadius = 2;
|
|
}; |