summaryrefslogtreecommitdiffstats
path: root/src/Entities/EntityEffect.h
diff options
context:
space:
mode:
authorarchshift <admin@archshift.com>2014-07-14 00:23:23 +0200
committerarchshift <admin@archshift.com>2014-07-14 00:23:23 +0200
commitf77723128c6582e9c184706c7140c8bcf9c390c4 (patch)
tree926e4a4a4ab8aef5981715899742d7b44250ada0 /src/Entities/EntityEffect.h
parentAdded splash potions to NBT serialization and retrieval (diff)
downloadcuberite-f77723128c6582e9c184706c7140c8bcf9c390c4.tar
cuberite-f77723128c6582e9c184706c7140c8bcf9c390c4.tar.gz
cuberite-f77723128c6582e9c184706c7140c8bcf9c390c4.tar.bz2
cuberite-f77723128c6582e9c184706c7140c8bcf9c390c4.tar.lz
cuberite-f77723128c6582e9c184706c7140c8bcf9c390c4.tar.xz
cuberite-f77723128c6582e9c184706c7140c8bcf9c390c4.tar.zst
cuberite-f77723128c6582e9c184706c7140c8bcf9c390c4.zip
Diffstat (limited to '')
-rw-r--r--src/Entities/EntityEffect.h138
1 files changed, 69 insertions, 69 deletions
diff --git a/src/Entities/EntityEffect.h b/src/Entities/EntityEffect.h
index c593fba81..6e53d83b8 100644
--- a/src/Entities/EntityEffect.h
+++ b/src/Entities/EntityEffect.h
@@ -87,9 +87,9 @@ protected:
double m_DistanceModifier;
};
-/************************************************************************
- **** Speed
- ************************************************************************/
+/////////////////////////////////////////////////////////////////////////
+// Speed
+/////////////////////////////////////////////////////////////////////////
class cEntityEffectSpeed:
public cEntityEffect
{
@@ -101,9 +101,9 @@ public:
}
};
-/************************************************************************
- **** Slowness
- ************************************************************************/
+/////////////////////////////////////////////////////////////////////////
+// Slowness
+/////////////////////////////////////////////////////////////////////////
class cEntityEffectSlowness:
public cEntityEffect
{
@@ -115,9 +115,9 @@ public:
}
};
-/************************************************************************
- **** Haste
- ************************************************************************/
+/////////////////////////////////////////////////////////////////////////
+// Haste
+/////////////////////////////////////////////////////////////////////////
class cEntityEffectHaste:
public cEntityEffect
{
@@ -129,9 +129,9 @@ public:
}
};
-/************************************************************************
- **** Mining Fatigue
- ************************************************************************/
+/////////////////////////////////////////////////////////////////////////
+// Mining Fatigue
+/////////////////////////////////////////////////////////////////////////
class cEntityEffectMiningFatigue:
public cEntityEffect
{
@@ -143,9 +143,9 @@ public:
}
};
-/************************************************************************
- **** Strength
- ************************************************************************/
+/////////////////////////////////////////////////////////////////////////
+// Strength
+/////////////////////////////////////////////////////////////////////////
class cEntityEffectStrength:
public cEntityEffect
{
@@ -157,9 +157,9 @@ public:
}
};
-/************************************************************************
- **** Instant Health
- ************************************************************************/
+/////////////////////////////////////////////////////////////////////////
+// Instant Health
+/////////////////////////////////////////////////////////////////////////
class cEntityEffectInstantHealth:
public cEntityEffect
{
@@ -173,9 +173,9 @@ public:
virtual void OnActivate(cPawn & a_Target) override;
};
-/************************************************************************
- **** Instant Damage
- ************************************************************************/
+/////////////////////////////////////////////////////////////////////////
+// Instant Damage
+/////////////////////////////////////////////////////////////////////////
class cEntityEffectInstantDamage:
public cEntityEffect
{
@@ -189,9 +189,9 @@ public:
virtual void OnActivate(cPawn & a_Target) override;
};
-/************************************************************************
- **** Jump Boost
- ************************************************************************/
+/////////////////////////////////////////////////////////////////////////
+// Jump Boost
+/////////////////////////////////////////////////////////////////////////
class cEntityEffectJumpBoost:
public cEntityEffect
{
@@ -203,9 +203,9 @@ public:
}
};
-/************************************************************************
- **** Nausea
- ************************************************************************/
+/////////////////////////////////////////////////////////////////////////
+// Nausea
+/////////////////////////////////////////////////////////////////////////
class cEntityEffectNausea:
public cEntityEffect
{
@@ -217,9 +217,9 @@ public:
}
};
-/************************************************************************
- **** Regeneration
- ************************************************************************/
+/////////////////////////////////////////////////////////////////////////
+// Regeneration
+/////////////////////////////////////////////////////////////////////////
class cEntityEffectRegeneration:
public cEntityEffect
{
@@ -233,9 +233,9 @@ public:
virtual void OnTick(cPawn & a_Target) override;
};
-/************************************************************************
- **** Resistance
- ************************************************************************/
+/////////////////////////////////////////////////////////////////////////
+// Resistance
+/////////////////////////////////////////////////////////////////////////
class cEntityEffectResistance:
public cEntityEffect
{
@@ -247,9 +247,9 @@ public:
}
};
-/************************************************************************
- **** Fire Resistance
- ************************************************************************/
+/////////////////////////////////////////////////////////////////////////
+// Fire Resistance
+/////////////////////////////////////////////////////////////////////////
class cEntityEffectFireResistance:
public cEntityEffect
{
@@ -261,9 +261,9 @@ public:
}
};
-/************************************************************************
- **** Water Breathing
- ************************************************************************/
+/////////////////////////////////////////////////////////////////////////
+// Water Breathing
+/////////////////////////////////////////////////////////////////////////
class cEntityEffectWaterBreathing:
public cEntityEffect
{
@@ -275,9 +275,9 @@ public:
}
};
-/************************************************************************
- **** Invisibility
- ************************************************************************/
+/////////////////////////////////////////////////////////////////////////
+// Invisibility
+/////////////////////////////////////////////////////////////////////////
class cEntityEffectInvisibility:
public cEntityEffect
{
@@ -289,9 +289,9 @@ public:
}
};
-/************************************************************************
- **** Blindness
- ************************************************************************/
+/////////////////////////////////////////////////////////////////////////
+// Blindness
+/////////////////////////////////////////////////////////////////////////
class cEntityEffectBlindness:
public cEntityEffect
{
@@ -303,9 +303,9 @@ public:
}
};
-/************************************************************************
- **** Night Vision
- ************************************************************************/
+/////////////////////////////////////////////////////////////////////////
+// Night Vision
+/////////////////////////////////////////////////////////////////////////
class cEntityEffectNightVision:
public cEntityEffect
{
@@ -317,9 +317,9 @@ public:
}
};
-/************************************************************************
- **** Hunger
- ************************************************************************/
+/////////////////////////////////////////////////////////////////////////
+// Hunger
+/////////////////////////////////////////////////////////////////////////
class cEntityEffectHunger:
public cEntityEffect
{
@@ -333,9 +333,9 @@ public:
virtual void OnTick(cPawn & a_Target) override;
};
-/************************************************************************
- **** Weakness
- ************************************************************************/
+/////////////////////////////////////////////////////////////////////////
+// Weakness
+/////////////////////////////////////////////////////////////////////////
class cEntityEffectWeakness:
public cEntityEffect
{
@@ -349,9 +349,9 @@ public:
virtual void OnTick(cPawn & a_Target) override;
};
-/************************************************************************
- **** Poison
- ************************************************************************/
+/////////////////////////////////////////////////////////////////////////
+// Poison
+/////////////////////////////////////////////////////////////////////////
class cEntityEffectPoison:
public cEntityEffect
{
@@ -365,9 +365,9 @@ public:
virtual void OnTick(cPawn & a_Target) override;
};
-/************************************************************************
- **** Wither
- ************************************************************************/
+/////////////////////////////////////////////////////////////////////////
+// Wither
+/////////////////////////////////////////////////////////////////////////
class cEntityEffectWither:
public cEntityEffect
{
@@ -381,9 +381,9 @@ public:
virtual void OnTick(cPawn & a_Target) override;
};
-/************************************************************************
- **** Health Boost
- ************************************************************************/
+/////////////////////////////////////////////////////////////////////////
+// Health Boost
+/////////////////////////////////////////////////////////////////////////
class cEntityEffectHealthBoost:
public cEntityEffect
{
@@ -395,9 +395,9 @@ public:
}
};
-/************************************************************************
- **** Absorption
- ************************************************************************/
+/////////////////////////////////////////////////////////////////////////
+// Absorption
+/////////////////////////////////////////////////////////////////////////
class cEntityEffectAbsorption:
public cEntityEffect
{
@@ -409,9 +409,9 @@ public:
}
};
-/************************************************************************
- **** Saturation
- ************************************************************************/
+/////////////////////////////////////////////////////////////////////////
+// Saturation
+/////////////////////////////////////////////////////////////////////////
class cEntityEffectSaturation:
public cEntityEffect
{