12 lines
191 B
Lua
12 lines
191 B
Lua
|
function CreateExplosion (type, prototype)
|
||
|
return CreateEntity(
|
||
|
type,
|
||
|
MergeTables(
|
||
|
prototype,
|
||
|
{
|
||
|
animations = Baseless.AnimationVariations,
|
||
|
}
|
||
|
)
|
||
|
)
|
||
|
end
|