1
0

APIDump: Added basic projectile documentation.

This commit is contained in:
Mattes D 2014-10-25 21:27:27 +02:00
parent a4d4641f58
commit 2e8f2c5b3a

View File

@ -123,35 +123,47 @@ return
cSplashPotionEntity = cSplashPotionEntity =
{ {
Desc = "", Desc = [[
Functions = {}, Represents a thrown splash potion.
]],
Functions =
{
GetEntityEffect = { Params = "", Return = "{{cEntityEffect}}", Notes = "Returns the entity effect in this potion" },
GetEntityEffectType = { Params = "", Return = "{{cEntityEffect|Entity effect type}}", Notes = "Returns the effect type of this potion" },
GetPotionColor = { Params = "", Return = "number", Notes = "Returns the color index of the particles emitted by this potion" },
SetEntityEffect = { Params = "{{cEntityEffect}}", Return = "", Notes = "Sets the entity effect for this potion" },
SetEntityEffectType = { Params = "{{cEntityEffect|Entity effect type}}", Return = "", Notes = "Sets the effect type of this potion" },
SetPotionColor = { Params = "number", Return = "", Notes = "Sets the color index of the particles for this potion" },
},
Inherits = "cProjectileEntity", Inherits = "cProjectileEntity",
}, -- cSplashPotionEntity }, -- cSplashPotionEntity
cThrownEggEntity = cThrownEggEntity =
{ {
Desc = "", Desc = [[
Represents a thrown egg.
]],
Functions = {}, Functions = {},
Inherits = "cProjectileEntity", Inherits = "cProjectileEntity",
}, -- cThrownEggEntity }, -- cThrownEggEntity
cThrownEnderPearlEntity = cThrownEnderPearlEntity =
{ {
Desc = "", Desc = "Represents a thrown ender pearl.",
Functions = {}, Functions = {},
Inherits = "cProjectileEntity", Inherits = "cProjectileEntity",
}, -- cThrownEnderPearlEntity }, -- cThrownEnderPearlEntity
cThrownSnowballEntity = cThrownSnowballEntity =
{ {
Desc = "", Desc = "Represents a thrown snowball.",
Functions = {}, Functions = {},
Inherits = "cProjectileEntity", Inherits = "cProjectileEntity",
}, -- cThrownSnowballEntity }, -- cThrownSnowballEntity
cWitherSkullEntity = cWitherSkullEntity =
{ {
Desc = "", Desc = "Represents a wither skull being shot.",
Functions = {}, Functions = {},
Inherits = "cProjectileEntity", Inherits = "cProjectileEntity",
}, -- cWitherSkullEntity }, -- cWitherSkullEntity