First, to address the heart of your question. No, there are no well-laid design platforms that emulate CoC, TiTS, Nimin, or Fall of Eden. Building a text adventure from those is mostly done from scratch, but when you're already a flash developer building one isn't that complicated. So, I'll address the other half of the question, how to get started on such a project from the bottom.
The best way to start on a project like this without any programming experience is to use an application that allows you to write the majority of the game without code first. Such an application is Twine (
http://twinery.org/ ) .
Twine's most basic nature is a "choose your own adventure" style storyboard, where it's just pages of text that are linked together by choices made in each page. It's all very user-friendly in how it's organized. However, Twine itself is designed to be programmable in a number of ways. It can hold variables, perform if-then statements, perform calculations, all that stuff. And there's a lot of documentation (as well as examples) of all of that among it's users and wikis.
However, it's not meant to be the same application you use for a finished work. As you're learning how to program in general (whether it's C#, html, or whatever), Twine allows you to work on your project and build content for the game, and have a functioning example of what you eventually want it all to be. It won't be as pretty as what you may eventually want to have, but the meat of the project can be getting done while you're learning how to develop and make it look the way you want it to look.
There's other applications that are steps above Twine, such as Ren'py (
http://www.renpy.org/ ) and RPG Maker (
http://www.rpgmakerweb.com/ ). There's plenty more, and they offer a bit more of a learning curve in exchange for a more user-friendly way to build a fully functional game with minimal technical knowledge.
I personally suggest Twine however because what you're really wanting to do is make sure you have a project before you even make one, and Twine's a great way of getting all your game's content written out and published, and starts you at a point where all you really need to know is how to write the content of the game, the real meat and potatoes of games favored here.