Ethereal Gates 0.7 => The next project

A place for game announcements, and for people to discuss games being made.
Forum rules
Please read the sticky before creating a new topic. Linking to Kickstarter/Crowdfunded games requires a demo. Updates to Patreon-backed games may be posted once every 2 months. Adult content should not be posted in this forum.
Message
Author
User avatar
nyaatrap
Crawling Chaos
Posts: 1824
Joined: Mon Feb 13, 2012 5:37 am
Location: Kimashi Tower, Japan
Contact:

Re: Ethereal Gates 0.6 [Dungeon explorer RPG]

#16 Post by nyaatrap »

Like Shin Megami Tensei Persona, It has a school life section and an exploration section. Protagonists (misaki, akari, nanaka) are high school girls who possess supernatural powers. Usually, they just enjoy school life but sometimes they get involved mysterious accidents; like one of their friend is missing at somewhere not the real world (= ethereal world).
The most difficult part of the writing is yuriyuri chattering in the school part >ω<

User avatar
Nellie
Veteran
Posts: 305
Joined: Wed Oct 28, 2009 8:40 pm
Completed: Love Like No Other; a2 ~a due~
Projects: The Pirate Mermaid; Gamelicious!; Spiral Destiny
Organization: Navigame
Contact:

Re: Ethereal Gates 0.6 [Dungeon explorer RPG]

#17 Post by Nellie »

I'm a BIG fan of SMT... I shall be stalking this xD

Also, love your art! *grabs cute girls with torn clothes* =3
Image

User avatar
nyaatrap
Crawling Chaos
Posts: 1824
Joined: Mon Feb 13, 2012 5:37 am
Location: Kimashi Tower, Japan
Contact:

Re: Ethereal Gates 0.6 [Dungeon explorer RPG]

#18 Post by nyaatrap »

Oh thank you (・∀・)
While I'm in a break of the story writing, I made a simplified battle frame. Will release it into the public domain.

Code: Select all

init -1 python:
    
    class Fighter():
        def __init__(self, name, max_hp, max_mp, skills):
            self.name = name
            self.max_hp = max_hp
            self.hp = max_hp
            self.max_mp = max_mp
            self.mp = max_mp
            self.skills = skills
                
        def auto_select(self):
            while True:
                selected = renpy.random.choice(self.skills)
                if selected.cost<self.mp:
                    return selected
            
        def defence(self):
            if user.skill.hit<renpy.random.randint (0,100):
                narrator ("%s dodged the attack" %self.name)
                return
            else:
                self.hp -= user.skill.power
                narrator ("%s got %d damage" %(self.name, user.skill.power))
                return
            
    class Skill():
        def __init__(self, name, cost, hit, power):
            self.name = name
            self.cost = cost
            self.hit = hit
            self.power = power
            
        def use(self): 
            user.mp -= self.cost
            narrator ("%s used %s" %(user.name, self.name))
            target.defence()
            return
            
    def battle(win, lose):
        global player, enemy, user, target
        renpy.show_screen("battle_ui")
        while True:
            renpy.say (narrator, "Skill select", interact=False)
            player.skill = renpy.call_screen("skill_select")
            enemy.skill = enemy.auto_select()
            user = player
            target = enemy
            user.skill.use()
            if target.hp<1:
                renpy.jump(win)
            user = enemy
            target = player
            user.skill.use()
            if target.hp<1:
                renpy.jump(lose)
                                            
screen skill_select:    
    vbox xpos .05 ypos .3:
        for i in player.skills:
            if i.cost <= player.mp:
                textbutton "[i.name]" action Return (value=i)
            else:
                textbutton "[i.name]"

screen battle_ui:    
    frame xmaximum 200 xanchor 1.0 xpos 0.99 yalign 0.02:
        has vbox
        hbox:
            text "[player.name]"
        hbox xfill True:
            text "HP"
            text "[player.hp]/[player.max_hp]" xalign 1.0
        hbox xfill True:
            text "MP"
            text "[player.mp]/[player.max_mp]" xalign 1.0
            
    frame xmaximum 200 xpos 0.01 yalign 0.02:
        has vbox
        hbox:
            text "[enemy.name]"
        hbox xfill True:
            text "HP"
            text "[enemy.hp]/[enemy.max_hp]" xalign 1.0
        hbox xfill True:
            text "MP"
            text "[enemy.mp]/[enemy.max_mp]" xalign 1.0
            
##############################################################################
# sample game script

label start:
    $ Slash = Skill("Slash", 0, 60, 10)
    $ Magic = Skill("Magic", 25, 70, 20)
    $ player = Fighter ("Hero", 50, 50, [Slash, Magic])
    $ enemy = Fighter ("Monster", 50, 50, [Slash, Magic])
    $ battle("win", "lose")
    
label win:
    "you won"
    return
    
label lose:
    "you lost"
    return
Wow this game is so boring (´・ω・`) But Ethereal gates is based on this frame, fully customized.

User avatar
netravelr
Miko-Class Veteran
Posts: 504
Joined: Thu Jan 28, 2010 2:31 am
Completed: Culina: Hands in the Kitchen, Culina: The Spirit of Cooking, Saving Zoey
Projects: Love at the Laundromat
Organization: Lakeview Interactive
Deviantart: netravelr
Location: USA
Contact:

Re: Ethereal Gates 0.6 [Dungeon explorer RPG]

#19 Post by netravelr »

Love Persona and I love this.. I just wish I knew Japanese.... :-P
Image
Technical Designer/Programmer
Game Design Portfolio - Project updates on my Twitter
Experienced in: C/C++/C#, Python, Unreal, Unity, and Flash
_________________
"Space can be very lonely. The greatest adventure is having someone share it with you."

User avatar
nyaatrap
Crawling Chaos
Posts: 1824
Joined: Mon Feb 13, 2012 5:37 am
Location: Kimashi Tower, Japan
Contact:

Re: Ethereal Gates 0.7 [RPG, Yuri, School life, Super natura

#20 Post by nyaatrap »

English translation is a future plan, when the game is made and if there are many requests :)
The new version is uploaded. Not just a system development, it also includes the 1st chapter of the game.

lemuel
Regular
Posts: 175
Joined: Tue Mar 31, 2009 6:55 pm
Projects: What is Life When the Golden is Gone?
Location: Samsara
Contact:

Re: Ethereal Gates 0.7 [RPG, Yuri, School life, Super natura

#21 Post by lemuel »

I request a translation into English!

gekiganwing
Lemma-Class Veteran
Posts: 2473
Joined: Wed Sep 29, 2004 1:38 pm
Contact:

Re: Ethereal Gates 0.7 [RPG, Yuri, School life, Super natura

#22 Post by gekiganwing »

nyaatrap wrote:English translation is a future plan, when the game is made and if there are many requests :)
I'm also interested in a version of your game with full English text. That said, if you need someone's help to get your text translated, then be sure to say so. Someone might be able to assist you.

User avatar
nyaatrap
Crawling Chaos
Posts: 1824
Joined: Mon Feb 13, 2012 5:37 am
Location: Kimashi Tower, Japan
Contact:

Re: Ethereal Gates 0.7 [RPG, Yuri, School life, Super natura

#23 Post by nyaatrap »

I was thinking to do raw translation by myself then ask someone to proofreading, but if there is someone willing to do all translation, I'd accept an offer happily right now. The main game is free unless additional R-18+ scenarios are added.

User avatar
nyaatrap
Crawling Chaos
Posts: 1824
Joined: Mon Feb 13, 2012 5:37 am
Location: Kimashi Tower, Japan
Contact:

Re: Ethereal Gates 0.7 [RPG, Yuri, School life, Super natura

#24 Post by nyaatrap »

Future plan. I'm thinking to make 2 packages; Celestial and Infernal. Celestial is a r-15 version with a current plot and free. Infernal is a r-18 version with another protagonist who can capture monsters and slave them. The latter is possibly a commercial product? Anyway it's a next plan when Celestial is done.

lemuel
Regular
Posts: 175
Joined: Tue Mar 31, 2009 6:55 pm
Projects: What is Life When the Golden is Gone?
Location: Samsara
Contact:

Re: Ethereal Gates 0.7 [RPG, Yuri, School life, Super natura

#25 Post by lemuel »

I would be happy to edit/proofread any translation - even R-18. Feel free to PM me when the translation's rough draft is done. I may be terrible at other languages, but I am good at English.

Feel free to go commercial - I would gladly support it.

HikkiPanda
Veteran
Posts: 294
Joined: Thu Jun 09, 2011 8:22 am
Projects: Marchioness' Teacup
Contact:

Re: Ethereal Gates 0.6 [Dungeon explorer RPG]

#26 Post by HikkiPanda »

nyaatrap wrote:Like Shin Megami Tensei Persona, It has a school life section and an exploration section. Protagonists (misaki, akari, nanaka) are high school girls who possess supernatural powers. Usually, they just enjoy school life but sometimes they get involved mysterious accidents; like one of their friend is missing at somewhere not the real world (= ethereal world).
The most difficult part of the writing is yuriyuri chattering in the school part >ω<
Sounds good ^^. If you want to write yuriyuri chattering, maybe you should use yuruyuri as reference? Though it might turn this game into a slice of life comedy XD

And yeah, english translation will be nice! I really don't want to miss those yuriyuri chattering XD

User avatar
nyaatrap
Crawling Chaos
Posts: 1824
Joined: Mon Feb 13, 2012 5:37 am
Location: Kimashi Tower, Japan
Contact:

Re: Ethereal Gates 0.7 [RPG, Yuri, School life, Super natura

#27 Post by nyaatrap »

Sure. Yuruyuri is my favorite anime, and also I like k-on, dannshi koukousei no nichijou, e.t.c. :D
Now I'm working on another project as a translator therefore the progress is slow, but It's a good experience to know the difference between English and Japanese.

User avatar
nyaatrap
Crawling Chaos
Posts: 1824
Joined: Mon Feb 13, 2012 5:37 am
Location: Kimashi Tower, Japan
Contact:

Re: Ethereal Gates 0.7 [RPG, Yuri, School life, Super natura

#28 Post by nyaatrap »

I'm having some trouble on designing and writing with my current skill >_> They're not totally bad, but far from my ideal, so I decide to halt the game with the current plot while, and to make a pure dungeon RPG using the same system and the monsters, but a different protagonist. The new game is tentatively named "Star maiden Rio", it's a short game then planning to release at April or May

Neolem
Newbie
Posts: 17
Joined: Sun Mar 18, 2012 9:02 am
Contact:

Re: Ethereal Gates 0.7 [RPG, Yuri, School life, Super natura

#29 Post by Neolem »

your game is AWESOME!
Too bad i cannot understand Japanese writing, but the fights are so cool with the bgm and vanishing clothes haha xD
Especially the music of Akari and Misaki are great, and Nanaka is a cutey :lol:

User avatar
nyaatrap
Crawling Chaos
Posts: 1824
Joined: Mon Feb 13, 2012 5:37 am
Location: Kimashi Tower, Japan
Contact:

Re: Ethereal Gates 0.7 [RPG, Yuri, School life, Super natura

#30 Post by nyaatrap »

They're free material though, I believe music is one of the most important thing to play games unstressfully.
and.. I don't understand why many games don't use metal music on their battle scenes. World needs more metal :P

Post Reply

Who is online

Users browsing this forum: No registered users