Your data in your original account is still there it is just you are now logged on as an administrator in a different account. The trick will be getting to your data as each macOS user is restricted from fully accessing other user home folders.
Do you have an external hard drive other than a Time Machine drive? What I propose is that we recover your data to an external drive and then you can manually copy stuff over. Alternatively, I can show you how to use Terminal move the data to the /Users/Shared folder and grant ownership to the new admin account. Then you can at least copy stuff over that way.
Open Terminal:
Replace <text> with the actual user names.
The sudo command stands for "Super User Do" and you will be prompted for your new admin password.
List the users home folders
ls /Users
Move the <original_account> from /Users/<original_account> to /Users/Shared/<original_account>
sudo mv /Users/<original_account> /Users/Shared
Change Ownership to the new admin account
sudo chown -R <new_admin>:staff /Users/Shared/<original_account>
Then in Finder press Shift+CMD+G and go to /Users/Shared and you should be able to click on the <original_account> and access the files on the Desktop, Documents, etc. You can copy things over to the new account.