Added inheritance information to Lua docs for projectiles.
This commit is contained in:
parent
b979cad893
commit
1cd45e770d
@ -35,12 +35,33 @@ return
|
|||||||
Inherits = "cProjectileEntity",
|
Inherits = "cProjectileEntity",
|
||||||
}, -- cArrowEntity
|
}, -- cArrowEntity
|
||||||
|
|
||||||
|
cExpBottleEntity =
|
||||||
|
{
|
||||||
|
Desc = "",
|
||||||
|
Functions = {},
|
||||||
|
Inherits = "cProjectileEntity",
|
||||||
|
}, -- cExpBottleEntity
|
||||||
|
|
||||||
cFireChargeEntity =
|
cFireChargeEntity =
|
||||||
{
|
{
|
||||||
Desc = "",
|
Desc = "",
|
||||||
Functions = {},
|
Functions = {},
|
||||||
Inherits = "cProjectileEntity",
|
Inherits = "cProjectileEntity",
|
||||||
}, -- cFireChargeEntity
|
}, -- cFireChargeEntity
|
||||||
|
|
||||||
|
cFireworkEntity =
|
||||||
|
{
|
||||||
|
Desc = "",
|
||||||
|
Functions = {},
|
||||||
|
Inherits = "cProjectileEntity",
|
||||||
|
}, -- cFireworkEntity
|
||||||
|
|
||||||
|
cFloater =
|
||||||
|
{
|
||||||
|
Desc = "",
|
||||||
|
Functions = {},
|
||||||
|
Inherits = "cProjectileEntity",
|
||||||
|
}, -- cFloater
|
||||||
|
|
||||||
cGhastFireballEntity =
|
cGhastFireballEntity =
|
||||||
{
|
{
|
||||||
@ -64,14 +85,14 @@ return
|
|||||||
pkArrow = { Notes = "The projectile is an {{cArrowEntity|arrow}}" },
|
pkArrow = { Notes = "The projectile is an {{cArrowEntity|arrow}}" },
|
||||||
pkEgg = { Notes = "The projectile is a {{cThrownEggEntity|thrown egg}}" },
|
pkEgg = { Notes = "The projectile is a {{cThrownEggEntity|thrown egg}}" },
|
||||||
pkEnderPearl = { Notes = "The projectile is a {{cThrownEnderPearlEntity|thrown enderpearl}}" },
|
pkEnderPearl = { Notes = "The projectile is a {{cThrownEnderPearlEntity|thrown enderpearl}}" },
|
||||||
pkExpBottle = { Notes = "The projectile is a thrown exp bottle (NYI)" },
|
pkExpBottle = { Notes = "The projectile is a {{cExpBottleEntity|thrown exp bottle}}" },
|
||||||
pkFireCharge = { Notes = "The projectile is a {{cFireChargeEntity|fire charge}}" },
|
pkFireCharge = { Notes = "The projectile is a {{cFireChargeEntity|fire charge}}" },
|
||||||
pkFirework = { Notes = "The projectile is a (flying) firework (NYI)" },
|
pkFirework = { Notes = "The projectile is a (flying) {{cFireworkEntity|firework}}" },
|
||||||
pkFishingFloat = { Notes = "The projectile is a fishing float (NYI)" },
|
pkFishingFloat = { Notes = "The projectile is a {{cFloater|fishing float}}" },
|
||||||
pkGhastFireball = { Notes = "The projectile is a {{cGhastFireballEntity|ghast fireball}}" },
|
pkGhastFireball = { Notes = "The projectile is a {{cGhastFireballEntity|ghast fireball}}" },
|
||||||
pkSnowball = { Notes = "The projectile is a {{cThrownSnowballEntity|thrown snowball}}" },
|
pkSnowball = { Notes = "The projectile is a {{cThrownSnowballEntity|thrown snowball}}" },
|
||||||
pkSplashPotion = { Notes = "The projectile is a thrown splash potion (NYI)" },
|
pkSplashPotion = { Notes = "The projectile is a {{cSplashPotionEntity|thrown splash potion}}" },
|
||||||
pkWitherSkull = { Notes = "The projectile is a wither skull (NYI)" },
|
pkWitherSkull = { Notes = "The projectile is a {{cWitherSkullEntity|wither skull}}" },
|
||||||
},
|
},
|
||||||
ConstantGroups =
|
ConstantGroups =
|
||||||
{
|
{
|
||||||
@ -84,6 +105,13 @@ return
|
|||||||
Inherits = "cEntity",
|
Inherits = "cEntity",
|
||||||
}, -- cProjectileEntity
|
}, -- cProjectileEntity
|
||||||
|
|
||||||
|
cSplashPotionEntity =
|
||||||
|
{
|
||||||
|
Desc = "",
|
||||||
|
Functions = {},
|
||||||
|
Inherits = "cProjectileEntity",
|
||||||
|
}, -- cSplashPotionEntity
|
||||||
|
|
||||||
cThrownEggEntity =
|
cThrownEggEntity =
|
||||||
{
|
{
|
||||||
Desc = "",
|
Desc = "",
|
||||||
@ -97,13 +125,20 @@ return
|
|||||||
Functions = {},
|
Functions = {},
|
||||||
Inherits = "cProjectileEntity",
|
Inherits = "cProjectileEntity",
|
||||||
}, -- cThrownEnderPearlEntity
|
}, -- cThrownEnderPearlEntity
|
||||||
|
|
||||||
cThrownSnowballEntity =
|
cThrownSnowballEntity =
|
||||||
{
|
{
|
||||||
Desc = "",
|
Desc = "",
|
||||||
Functions = {},
|
Functions = {},
|
||||||
Inherits = "cProjectileEntity",
|
Inherits = "cProjectileEntity",
|
||||||
}, -- cThrownSnowballEntity
|
}, -- cThrownSnowballEntity
|
||||||
|
|
||||||
|
cWitherSkullEntity =
|
||||||
|
{
|
||||||
|
Desc = "",
|
||||||
|
Functions = {},
|
||||||
|
Inherits = "cProjectileEntity",
|
||||||
|
}, -- cWitherSkullEntity
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user