[Class Idea] Geomancer
Moderator: Moderator
Re: [Class Idea] Geomancer
You might have missed it as it was in game chat from DG. You'll see an official announcement soon I think.
Re: [Class Idea] Geomancer
Leak info
Apparently.... they are fun. But you didn't heard it for me
Hide before the infoleaker's hunter arrive
Apparently.... they are fun. But you didn't heard it for me
Hide before the infoleaker's hunter arrive
I write guides and make addons too now, apparently
You can go here for a compilation of everything I wrote, plus some other important stuff!
Includes general guides (inscriptions, zone, prodigies), and class guides (Demo, Anorithil, Bulwark, Zerker, Sblade)
You can go here for a compilation of everything I wrote, plus some other important stuff!
Includes general guides (inscriptions, zone, prodigies), and class guides (Demo, Anorithil, Bulwark, Zerker, Sblade)
-
- Archmage
- Posts: 318
- Joined: Fri Oct 09, 2015 2:27 pm
Re: [Class Idea] Geomancer
Everyone get hype for eventually. Cultist sounds like a big deal from here! 

Re: [Class Idea] Geomancer
So I've taken quite a long break from ToME after completing Cultist but I think I'll start working on this again in the next couple of days. Some of the talent ideas are rather unusual though so this will be an interesting coding challenge.
Re: [Class Idea] Geomancer
It's been a while, but I recall there being a lot of fun ideas here. Like railguning shot with magnetic magic. Glad to hear you're getting back to it 

-
- Yeek
- Posts: 10
- Joined: Mon Sep 25, 2017 6:06 pm
Re: [Class Idea] Geomancer
Hey Rakazai, i was wondering what will be your next creation on tome.
I heard you are thinking on a spider dlc, this hypes me so much, more than the cultist one. I also made a bunch of ideas for an eventual arachnomancer class! I would like to talk with you when you can about it! Even in the roguelike discord!
Thank you for your work, TReaver.
I heard you are thinking on a spider dlc, this hypes me so much, more than the cultist one. I also made a bunch of ideas for an eventual arachnomancer class! I would like to talk with you when you can about it! Even in the roguelike discord!
Thank you for your work, TReaver.
-
- Wyrmic
- Posts: 257
- Joined: Tue Jan 03, 2017 7:12 pm
Re: [Class Idea] Geomancer
Have a look at your PMs TReaver.
Currently I'm trying to get a rather complex talent working. The first part of it is fine, although the additional targeting type you get at TL4 is an interesting challenge. Tossing walls at people is still fun without that though.
Earthwave | 5 Cooldown
Raise a wall of stone in an empty adjacent tile and send it rushing forwards. On impacting an enemy this will deal 210 physical damage and push them forward up to the maximum range. If they reach another actor or impassable terrain they will take 50% increased damage and be dazed for 2-3 turns.
The wall will crumble 2-3 turns after being moved.
At talent level 4, you can instead target any existing wall tile in range and move it with the same effects.
Currently I'm trying to get a rather complex talent working. The first part of it is fine, although the additional targeting type you get at TL4 is an interesting challenge. Tossing walls at people is still fun without that though.
Earthwave | 5 Cooldown
Raise a wall of stone in an empty adjacent tile and send it rushing forwards. On impacting an enemy this will deal 210 physical damage and push them forward up to the maximum range. If they reach another actor or impassable terrain they will take 50% increased damage and be dazed for 2-3 turns.
The wall will crumble 2-3 turns after being moved.
At talent level 4, you can instead target any existing wall tile in range and move it with the same effects.
Re: [Class Idea] Geomancer
I think it's little divergent from his intention, but I would make it a two part target.Razakai wrote:Currently I'm trying to get a rather complex talent working. The first part of it is fine, although the additional targeting type you get at TL4 is an interesting challenge. Tossing walls at people is still fun without that though.[...] At talent level 4, you can instead target any existing wall tile in range and move it with the same effects.
[disclaimer, I have no idea if this works]
First, target a wall. If this part of the targeting is successful, create a new, stationary, party member at the wall tile, give it the wall tile's image and transfer control to the party member, then get a new target from this entity. Proceed with the original Earthwave code (I assume it's either a projectile or a more general entity with a fixed act function? If the latter, maybe remove the targeting entity from the party and update it to behave as the Earthwave wall, for entity efficiency's sake?). Oh, and transfer control back to the main player entity, obviously.
This would be a lot easier if I could figure out the way the engine's targeting function actually works, so you could just draw the target reticule from a new origin location without using setPlayer; but I only started learning Lua and looking at T-Engine and ToME code in November.
Re: [Class Idea] Geomancer
Earthwave is currently using a few tricks to work. Effectively it just fires an invisible, instantaneous speed physical bolt that knocks back the target. After they get knocked back, it then creates a wall tile adjacent to them, between you and them. So to the player it looks as if the wall itself has rushed them, but in reality the wall never moved.
Your suggestion is likely the correct one - creating an entity allows use of the Cursed Bolt targeting system which is the only way I can think of to get it working easily at the moment.
Your suggestion is likely the correct one - creating an entity allows use of the Cursed Bolt targeting system which is the only way I can think of to get it working easily at the moment.
Re: [Class Idea] Geomancer
For a status update - here's what the current categories list looks like, taken directly from the addon. The ones with -- being the commented out ones I've not implemented yet. Stonecaller is the current WIP one, which is definitely the hardest as it contains the majority of the terrain manipulation and summoning.
Code: Select all
talents_types = {
["spell/avalanche"]={true, 0.3},
["spell/stonesmith"]={true, 0.3},
["spell/tectonics"]={true, 0.3},
["spell/desert"]={true, 0.3},
["spell/stonecaller"]={true, 0.3},
-- ["spell/stoneblade"]={false, 0.3},
-- ["spell/rock"]={false, 0.3},
["spell/volcanism"]={false, 0.3},
-- ["spell/metal"]={false, 0.3},
-- ["spell/geomancer"]={true, 0.3},
["spell/earthen-armory"]={true, 0.3},
["spell/sand"]={true, 0.3},
-- ["spell/crystal"]={false, 0.3},
["cunning/survival"]={false, 0},
},
-
- Wyrmic
- Posts: 257
- Joined: Tue Jan 03, 2017 7:12 pm
Re: [Class Idea] Geomancer
So, uh.... Does this still exist?
Sorry, I found this thread while searching through my post history for something, and the hype train hit me all over again.
Sorry, I found this thread while searching through my post history for something, and the hype train hit me all over again.
Let slip the toast of war.
Re: [Class Idea] Geomancer
'Geomancer' does exist in a complete form, and you will see it in the future at some point.
-
- Wyrmic
- Posts: 257
- Joined: Tue Jan 03, 2017 7:12 pm
Re: [Class Idea] Geomancer
Excellent!
That sounds almost like it's been included in an upcoming official DLC or something.....
That sounds almost like it's been included in an upcoming official DLC or something.....

Let slip the toast of war.
Re: [Class Idea] Geomancer
hey Razakai did geomancer get renamed dust mage or did there just so happen to be another vaguely earth themed caster being made?