Prototype/Fish: Difference between revisions
Jump to navigation
Jump to search
LazyFridge (talk | contribs) (Somewhat useless page on the fish prototype. But I saw it missing, so I figured i'd at least let the page exist.) |
(Converted to SMW format) |
||
(4 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
{{Prototype parent|Prototype/EntityWithHealth}} | |||
Entity that spawns in water tiles, which can be mined | Entity that spawns in water tiles, which can be mined. Moves around unless deactived with entity.active = false. | ||
= | |||
{{Prototype TOC|fish}} | |||
== Mandatory properties == | |||
{{Prototype property|pictures|[[Types/SpriteVariations|SpriteVariations]]}} | |||
== Example == | == Example == | ||
<syntaxhighlight lang="lua">{ | |||
type = "fish", | type = "fish", | ||
name = "fish", | name = "fish", | ||
icon = "__base__/graphics/icons/fish.png", | icon = "__base__/graphics/icons/fish.png", | ||
icon_size = 32, | |||
flags = {"placeable-neutral", "not-on-map"}, | flags = {"placeable-neutral", "not-on-map"}, | ||
minable = {mining_time = 1, result = "raw-fish", count = 5}, | minable = {mining_time = 1, result = "raw-fish", count = 5}, | ||
Line 22: | Line 19: | ||
subgroup = "creatures", | subgroup = "creatures", | ||
order = "b-a", | order = "b-a", | ||
collision_box = {{-0. | collision_box = {{-0.75, -0.75}, {0.75, 0.75}}, | ||
selection_box = {{-0.5, -0.3}, {0.5, 0.3}}, | selection_box = {{-0.5, -0.3}, {0.5, 0.3}}, | ||
pictures = | pictures = | ||
Line 42: | Line 39: | ||
influence = 0.01 | influence = 0.01 | ||
} | } | ||
}, | },</syntaxhighlight> |
Latest revision as of 20:07, 29 July 2019
Prototype definitions » PrototypeBase » Prototype/Entity » Prototype/EntityWithHealth » Prototype/Fish
Entity that spawns in water tiles, which can be mined. Moves around unless deactived with entity.active = false.
Mandatory properties
pictures
Type: SpriteVariations
Example
{
type = "fish",
name = "fish",
icon = "__base__/graphics/icons/fish.png",
icon_size = 32,
flags = {"placeable-neutral", "not-on-map"},
minable = {mining_time = 1, result = "raw-fish", count = 5},
max_health = 20,
subgroup = "creatures",
order = "b-a",
collision_box = {{-0.75, -0.75}, {0.75, 0.75}},
selection_box = {{-0.5, -0.3}, {0.5, 0.3}},
pictures =
{
{
filename = "__base__/graphics/entity/fish/fish-1.png",
priority = "extra-high",
width = 22,
height = 36
},
{
filename = "__base__/graphics/entity/fish/fish-2.png",
priority = "extra-high",
width = 32,
height = 32
}
},
autoplace = {
influence = 0.01
}
},