diff --git a/mods/mobs_mc/init.lua b/mods/mobs_mc/init.lua
index 6bb5d6f9..f00d2fdd 100644
--- a/mods/mobs_mc/init.lua
+++ b/mods/mobs_mc/init.lua
@@ -13,7 +13,7 @@ dofile(path .. "/pig.lua") -- Mesh and animation by Pavel_S
 dofile(path .. "/horse.lua") -- KrupnoPavel
 dofile(path .. "/wolf.lua") -- KrupnoPavel
 dofile(path .. "/horse.lua") -- KrupnoPavel
-
+dofile(path .. "/squid.lua") -- Animation, sound and egg texture by daufinsyd
 
 -- NPC
 dofile(path .. "/villager.lua") -- KrupnoPavel
diff --git a/mods/mobs_mc/models/mobs_squid.b3d b/mods/mobs_mc/models/mobs_squid.b3d
new file mode 100644
index 00000000..6bba3122
Binary files /dev/null and b/mods/mobs_mc/models/mobs_squid.b3d differ
diff --git a/mods/mobs_mc/sounds/squid_hurt1.ogg b/mods/mobs_mc/sounds/squid_hurt1.ogg
new file mode 100644
index 00000000..03a18958
Binary files /dev/null and b/mods/mobs_mc/sounds/squid_hurt1.ogg differ
diff --git a/mods/mobs_mc/squid.lua b/mods/mobs_mc/squid.lua
new file mode 100644
index 00000000..bba3ace8
--- /dev/null
+++ b/mods/mobs_mc/squid.lua
@@ -0,0 +1,58 @@
+-- v1
+
+local l_spawn_in = {"mcl_core:water_flowing","mcl_core:water_source"}
+local l_spawn_near = {"mcl_core:water_flowing","mcl_core:water_source"}
+local l_spawn_chance = 5000
+
+mobs:register_mob("mobs_mc:squid", {
+    type = "animal",
+    passive = true,
+    hp_min = 10,
+    hp_max = 10,
+    armor = 3,
+    collisionbox = {-0.4, 1.3, -1.5, 0.6, 2.3, 1.5},
+    visual = "mesh",
+    mesh = "mobs_squid.b3d",
+    textures = {
+        {"mobs_squid.png"}
+    },
+    sounds = {
+		damage = "squid_hurt1",
+	},
+    animation = {
+		stand_start = 1,
+		stand_end = 60,
+		walk_start = 1,
+		walk_end = 60,
+		run_start = 1,
+		run_end = 60,
+	},
+    drops = {
+		{name = "mcl_dye:black",
+		chance = 1,
+		min = 1,
+		max = 3,},
+	},
+    rotate = 180,
+    visual_size = {x=4.5, y=4.5},
+    makes_footstep_sound = false,
+    stepheight = 0.1,
+    fly = true,
+    fly_in = "mcl_core:water_source",
+    fall_speed = -3,
+    view_range = 8,
+    fall_damage = 1,
+    water_damage = 0,
+    lava_damage = 5,
+    light_damage = 0,
+    
+})
+--name, nodes, neighbours, minlight, maxlight, interval, chance, active_object_count, min_height, max_height
+mobs:spawn_specific("mobs_mc:squid", l_spawn_in, l_spawn_near, -1, 0, 30, l_spawn_chance, 1, -31000, tonumber(minetest.setting_get("water_level")) - 1 )
+
+
+-- compatibility
+mobs:alias_mob("mobs:squid", "mobs_mc:squid")
+
+-- spawn eggs
+mobs:register_egg("mobs_mc:squid", "Spawn Squid", "spawn_egg_squid.png")
diff --git a/mods/mobs_mc/textures/mobs_squid.png b/mods/mobs_mc/textures/mobs_squid.png
new file mode 100644
index 00000000..581054e8
Binary files /dev/null and b/mods/mobs_mc/textures/mobs_squid.png differ
diff --git a/mods/mobs_mc/textures/spawn_egg_squid.png b/mods/mobs_mc/textures/spawn_egg_squid.png
new file mode 100644
index 00000000..f486f35d
Binary files /dev/null and b/mods/mobs_mc/textures/spawn_egg_squid.png differ