Users browsing this thread: 1 Guest(s)
[FANGAME] EarthBound 2
#1
Exclamation 
EarthBound 2!
If you like EarthBound, and you are at least halfway decent with a computer, then you might want to help be a part of EarthBound 2!

Story
Remember at the end of EarthBound, when Picky gives you the letter from Pokey? Well, if you think Ness decided to take a power nap, think again.

What happens is it's a week later, Ness is having his birthday, but he is still anxious about Pokey's letter. He still opens his presents, and they are the basic equips of the game. Suddenly, the lights flicker and Ness's parents are gone! He can hear Pokey saying, "You little fool!" Did you think someone else would try and stop me? Come get me! I bet since it's been over a week, you're weak now!"

New Features
In this game, I think there should be a little more polish! First off, there would be more equip spaces. Things like an extra hold space: his other hand! Unless it's like a bottle rocket, but it's like a wet towel, he would use it automatically! Also, I would implement 'exhaustion'. Something like after every so steps, Ness would be exhausted, and sometimes in battle, he would try to catch his breath. What could fix this? Water. All across the land, there's water fountains, drink machines, etc. Of course, there will be a water bottle (3 uses), a water canteen (6 uses), and finally, PSI Tsunami! Same for things like 'frostbite' and heat packs, matches, and PSI Fire.

New Party Members
Well, of course, we can't be bland!
1:Ness(...duh)
2Tongueaula(*Wedding march* Heart)
3:Tony(He can only use weapons, BUT when you meet him, he's talking to a pretty girl... }:} )
4Tongueae(All these characters are rip-offs...A sister or cousin of Poo.)

Pay
...wut? I can only hope that this game becomes a Cave Story like game, where it becomes famous..."hope"...

In other words, I'm broke Cute

Battle
This section is just for the script that I've written for a battle in Python...it stinks.

Code:
exhaust=0
power=200
tattack=200
attack=100
team=4
t1health=1500
t2health=1300
t3health=1200
t4health=1400
enemyhealth=9999
psipower=500
print "...Giygas has come to reface you!"
print "He took you to a bizzare dimension!"
print "You feel like you only have a fraction of your actual health!"
print "You also feel the longer one of your teammates is collapsed,"
print "The weaker your PSI gets!"
while enemyhealth>0:
    if t4health<0:
        psipower=psipower-125
    if t3health<0:
        psipower=psipower-125
    if t2health<0:
        psipower=psipower-125
    if t1health<0:
        psipower=psipower-125
    if t1health+t2health+t3health+t4health<=0:
        print "Your team collapsed!"
        print "With a last breath, Paula focused and the group healed!"
        t1health=1500
        t2health=1300
        t3health=1200
        t4health=1400
        psipower=500
    print "Enter 1 to bash, enter 2 to heal, or enter 3 for PSI!"
    choice = input("Enter a number to continue fighting! ")
    if choice==1:
        if exhaust==0:
            enemyhealth=enemyhealth-(power+tattack)
        else:
            print "HAXOR!"
            import ifyouhackthishappenstoyou
        print "The enemy now has ",
        print enemyhealth,
        print "health!"
        if team==4:
            print "The enemy has"
            print enemyhealth
            print "health!"
            if t1health>0:
                t1health=t1health-attack
                print "Ness has",
                print t1health,
                print "health!"
            else:
                t1health=0
                print "Ness's HP is 0 and he's collapsed!"
            if t2health>0:
                t2health=t2health-attack
                print "Paula has",
                print t2health,
                print "health!"
            else:
                t2health=0
                print "Paula's HP is 0 and she's collapsed!"
            if t3health>0:
                t3health=t3health-attack
                print "Tony has",
                print t3health,
                print "health!"
            else:
                t3health=0
                print "Tony's HP is 0 and he's collapsed!"
            if t4health>0:
                t4health=t4health-attack
                print "Pae has",
                print t4health,
                print "health!"
            else:
                t4health=0
                print "Pae's HP is 0 and she's collapsed!"
        else:
            print "Did you cheat? You can only have four party members, you know!"
            import ifyouhackthishappenstoyou
    elif choice==2:
        t1health=t1health+500
        t2health=t2health+500
        t3health=t3health+500
        t4health=t4health+500
        print "The enemy has"
        print enemyhealth
        print "health!"
        if team==4:
            print "The enemy has"
            print enemyhealth
            print "health!"
            if t1health>0:
                t1health=t1health-attack
                print "Ness has",
                print t1health,
                print "health!"
            else:
                t1health=0
                print "Ness's HP is 0 and he's collapsed!"
            if t2health>0:
                t2health=t2health-attack
                print "Paula has",
                print t2health,
                print "health!"
            else:
                t2health=0
                print "Paula's HP is 0 and she's collapsed!"
            if t3health>0:
                t3health=t3health-attack
                print "Tony has",
                print t3health,
                print "health!"
            else:
                t3health=0
                print "Tony's HP is 0 and he's collapsed!"
            if t4health>0:
                t4health=t4health-attack
                print "Pae has",
                print t4health,
                print "health!"
            else:
                t4health=0
                print "Pae's HP is 0 and she's collapsed!"
        else:
            print "Did you cheat? You can only have four party members, you know!"
            import ifyouhackthishappenstoyou
    elif choice==3:
        print "Ness, Paula, and Pae used PSI Freeze while Jeff shot a lazer at Giygas!"
        enemyhealth=enemyhealth-psipower
        if team==4:
            print "The enemy has"
            print enemyhealth
            print "health!"
            if t1health>0:
                t1health=t1health-attack
                print "Ness has",
                print t1health,
                print "health!"
            else:
                t1health=0
                print "Ness's HP is 0 and he's collapsed!"
            if t2health>0:
                t2health=t2health-attack
                print "Paula has",
                print t2health,
                print "health!"
            else:
                t2health=0
                print "Paula's HP is 0 and she's collapsed!"
            if t3health>0:
                t3health=t3health-attack
                print "Tony has",
                print t3health,
                print "health!"
            else:
                t3health=0
                print "Tony's HP is 0 and he's collapsed!"
            if t4health>0:
                t4health=t4health-attack
                print "Pae has",
                print t4health,
                print "health!"
            else:
                t4health=0
                print "Pae's HP is 0 and she's collapsed!"
        else:
            print "Did you cheat? You can only have four party members, you know!"
            import ifyouhackthishappenstoyou
enemyhealth=0
print "The enemy is dead!!"

By the way, ifyouhackthishappenstoyou is just a file that says "HAXOR!" a bunch of times...lazy. Smile


Positions
Required
(If this just ends up a text adventure, I will only need programmers and writers, no matter what.)
Programmers(Python, C, or C++)

Writers/Funny Joke Parson People

Optional, With a Reason
Spriters (I might reuse game sprites)

Music Writers (Might reuse game/rename this "Mario Paint Specialists")


Voice Actors(For extra UMPH!)

Sound Effect Specialists (People willing to scream into a microphone)

That's it. Go ahead, say what you want, cause I have a sister, so I won't care. Wink
Thanked by:
#2
this is a request
[Image: ndsMEF0.gif][Image: sig.gif]
Thanked by:
#3
wow, if you need a specific guy to make the jokes




then I suggest scrapping this idea altogether

locking because request. When making a game, at least have some tangible work before making a post.
Spriter Gors】【Bandcamp】【Twitter】【YouTube】【Tumblr】【Portifolio
If you like my C+C, please rate me up. It helps me know I'm helping!
[Image: deT1vCJ.png]
Thanked by:


Forum Jump: