Zero Punctuation: Tomodachi Life - Nintendo Life Simulator

Recommended Videos

Imre Csete

Original Character, Do Not Steal
Jul 8, 2010
785
0
0
Oh God, that ending credits animation!

That's so wrong and yet so hillarious.
 

FFMaster

New member
May 13, 2009
88
0
0
Zachary Amaranth said:
I would actually think your awareness of the latter would undermine the former. I mean, you actually know you're telling a game designer what game designers "all know."
Yeah and that was my point (as person who has dabbled in game design in the past and now works with code professionally). He seems to be saying that its less work to include than exclude but its not the case because of stuff i mentioned later in my post. In some cases its true but in this case there's a bit more too it.

and again, i think they should have added it all in or at the very least added the relationships even if they couldn't have kids, middle America be damned :p
 

MowDownJoe

New member
Apr 8, 2009
464
0
0
Kinitawowi said:
I'll say the same thing I say in every Tomodachi Life thread: THIS?! This is what the LGBTOMGWTFBBQ community got so pissed off about?
Well, it was more the fact that Nintendo collectively shit itself over the internet. MovieBob went into a huge rant on Twitter that all Nintendo had to say to avoid controversy was "We only translated the game, and this wasn't in the original version." And they blew it. And then Jim did 2 episodes of the Jimquisition on it because of that.
 

Erttheking

Member
Legacy
Oct 5, 2011
10,845
1
3
Country
United States
This episode was much funnier than the more recent ones, my favorite bits being anything involving lady Hitler and Yahtzee burying the reindeer man.
 

LaoJim

New member
Aug 24, 2013
555
0
0
Milky1985 said:
This was interesting to watch because the points were made based on a incorrect initial premise, that excluding same sex relationships was less work than adding them (wrong as it is to actually exclude the option). Anyone who actually makes games would tell you this as there are more factors to consider so more if statements and testing to deal with, and its odd to have to point this out as the person making the point makes games himself!
Depends how its coded. However consider this sample:

boolean canCoupleMarry(Person a, Person b)
{
if (a == b)
{ return false; //can't marry yourself
}
if (a.age < 18 || b.age < 18)
{ return false; //no jailbait. alter according to local law
}
// if (a.gender == b.gender)
// { return false;
// }
// Allow same sex marriage
...
...
// Other conditions as required
return true;
}

Of course you are assuming that everyone is potentially bisexual. If you want to give the player the option of setting a sexuality when you create the character, then the code to add the button to the screen is going to be potenitally longer than the logic needed to handle the sexuality options.
 

FFMaster

New member
May 13, 2009
88
0
0
LaoJim said:
Milky1985 said:
This was interesting to watch because the points were made based on a incorrect initial premise, that excluding same sex relationships was less work than adding them (wrong as it is to actually exclude the option). Anyone who actually makes games would tell you this as there are more factors to consider so more if statements and testing to deal with, and its odd to have to point this out as the person making the point makes games himself!
Depends how its coded. However consider this sample:

boolean canCoupleMarry(Person a, Person b)
{
if (a == b)
{ return false; //can't marry yourself
}
if (a.age < 18 || b.age < 18)
{ return false; //no jailbait. alter according to local law
}
// if (a.gender == b.gender)
// { return false;
// }
// Allow same sex marriage
...
...
// Other conditions as required
return true;
}

Of course you are assuming that everyone is potentially bisexual. If you want to give the player the option of setting a sexuality when you create the character, then the code to add the button to the screen is going to be potenitally longer than the logic needed to handle the sexuality options.
still proving the point i made in the post if you actually read down into it that its a minor change (reading past the first paragraph is something im guessing noone is bothering to do). this is assuming that all objects are asexual etc, but this still influences the design process. Reason being more work to account for the increased amount of possible matches for each person, as this has an effect on computation time and memory requirements as these are limited resources.
 

LaoJim

New member
Aug 24, 2013
555
0
0
FFMaster said:
still proving the point i made in the post if you actually read down into it that its a minor change (reading past the first paragraph is something im guessing noone is bothering to do). this is assuming that all objects are asexual etc, but this still influences the design process. Reason being more work to account for the increased amount of possible matches for each person, as this has an effect on computation time and memory requirements as these are limited resources.
I've not played Tomodachi life, so I'm not sure how it handles relationships, but presumably every characters has some values regarding their opinion of everyone else in the game. If we assume love is just a strong version of like, you don't need to have any more values. (And even if you do it probably only need one byte more, assuming there's 100 characters in the game we talking 100*100 bytes = about 10k which shouldn't break the bank unless the hardware is already up against the limit) Whenever an event happens between these two characters the values move up or down. If the values pass a certain threshold then there's the chance for a relationship to start. Done this way I don't see that it needs any more memory or time than just doing hetrosexual relationships.

FFMaster said:
There are lots of arguments for the inclusion and why they should have done it, but the one here is stupid because "its less work to include than exclude" is just flat out wrong. baring in mind this is horse that was beaten to death months ago anyway
I don't see that its flat out wrong. I think the idea is that allowing homosexual relationships/marriage shouldn't be regarded as an additional feature. I think its better to say that if its in the design document from the start than it is pretty much exactly the same amount of work.

FFMaster said:
You also have to consider then that even if they did allow gay marriage people would still complain because they can't have kids so can't progress further through the game (cause by my understanding of it , sending out your kids is an important part of progression). So instead of no gay marriage complaints we would get something else, unless more work was don.
Again this is not a problem if its in the design document from the start. As it's a family friendly game you just have
a stork bring the new baby to the (same or different sex) couple, no questions asked.

FFMaster said:
And even then you have angry middle American mothers complaining that the game is teacher her kids "non christian values
If you're making a modern life simulation you have to take a stand on this issue. Not having gay marriage isn't being neutral these days (maybe twenty years ago it would have been), its taking a anti-gay stance. As a company you have to decide on one stance or the other, and either way you are going to upset some people. In this case, regardless of anything else, I think this angry middle American mothers kids are going to realize that gay people exist sooner or later whatever she does.

The easy way around this is to have a slider setting the ratio of homo/hetro/bisexual people in the game (Or let it be set on a character by character basis). This allows people to create a completely gay community, a more balanced community or a "traditional" community as they see fit. Will your hypothetical mother be happy with this solution? Probably not, but its now firmly her problem.
 

sumanoskae

New member
Dec 7, 2007
1,526
0
0
I have long awaited the return of Senor Couqonfays. I almost want to buy the game just to see how far I can stretch "Family Friendly"
 

superguin200

New member
Mar 13, 2012
16
0
0
Did anyone else completely fanboy/girl out when he mentioned his novels? I want to know what happened to the other characters...
 

Clunks

New member
Apr 21, 2010
70
0
0
Granted, this probably isn't the most convincing defence you'll ever hear of Tomodachi Life as a game, but: I think the fact that you got some of your best gags ever simply by describing yo/the internet. Does that make it worth the asking price? I don't know, I guess that depends on how easily amused you are. I watched Jimothy's Freaky Constantina song every day for about a fortnight, so I guess if I had a 3DS I'd be exactly the target audience for it.
 

Coolblue

New member
Feb 18, 2014
12
0
0
I honestly still find it kinda weird or whatever to bash on Nintendo for this. Because first, this was originally a Japan-only series until someone decided that it should come over here too, hence the non-existence of same-sex relationships and marriages because that kind of thing is pretty much non-existent in Japan, from what I hear. And I understand Nintendo of America could edit the code to allow that, but it's not like they're trying to deliberately shame anyone. If they were translating it to make it for the U.S., then I imagine they wouldn't have had the time to edit in that function before their release date mark was made. And plus, Nintendo's not blindly attacking anyone for it. If there was some kind of thing shaming homosexuals and other differently-oriented people in the game, then I wouldn't have gotten Tomodachi Life in the first place. But looking at the game and seeing only heterosexual relationships and blindly yelling "NINTENDO IS ANTI-GAY STOP BUYING THEIR GAMES WAAAAAAAAAAAAH" is like saying that one certain person at a party hates Kool-Aid and fruit-related things in general, simply because that person didn't think to bring fruit punch they bought at the fruit store. He wasn't immediately thinking about it at the time, and someone had already brought their own personal flavor that everyone else enjoyed, but when HE didn't consider everyone else, suddenly he's the bad guy.

Plus, and I know this may be a little bad of me to say, but is this also because people are just willing to bash on Nintendo lately that everyone's trying to hit them at every single fucking angle that they can get their grubby little mitts on? Oh hey, Nintendo forgot to put same-sex marriage in a game that came from a different continent and didn't usually have same-sex marriage and didn't have time to code in same-sex relations. NOBODY ELSE IS DOING IT EITHER BUT NINTENDO YOU ASSHOLES! PITCHFORK AND TORCHES! Oh hey, the Wii U is selling badly and so is the 3DS, THEY'RE CLEARLY SLIPPING ON THEIR GRADE A SALES! ROB THEM OF THEIR MONEY! Honestly, you fucking people need to get a grip. Nintendo's not doing this shit to deliberately get a rise out of everyone, and if they were, I think we'd all know when they were and we'd had all seen it by now. They're not doing anything fucking wrong, and there's no need to start throwing shit at them because they tripped up on one solitary stair on their company stairwell. Just give them a fucking break and let them make and sell their games in peace. They're about the only other thing in the current video gaming scene that's keeping it all a nice shade of bright colors, instead of the generic black, brown and grey colors we've all become relegated to nowadays.

TL;DR: Stop giving Nintendo garbage for things they're not even intending to say or do. They're not looking to hurt anyone, and they'd be better off with people like you jabbing at their backs and cutting them every time they walk out of rhythm.
 

cptjack42

New member
Mar 16, 2009
332
0
0
You'd actually expect X to be able to keep something secret? She'd be accidentally spilling the beans the second someone asked "what's he like in bed." And then she'd pretend she said nothing.
 

geier

New member
Oct 15, 2010
250
0
0
I fail to see a problem with excluding LGBTQAQ. I'm obese. Just like 50% of americans and mexicans or 30% of the germans. How many games are there that let me play as a fat guy?
Ask any fat person how they are treated from others. I don't think LGBTQAQ are treated worse then fat people. Am i supposed to protest now until all games include fat people?

captcha: milk was a bad choice
Realy? Only if it is the milk of mice.
 

BehattedWanderer

Fell off the Alligator.
Jun 24, 2009
5,237
0
0
I kind of want Señor Koqueonfaes to be a recurring ZP character, in as far as those exist. Distant relative of Gareth Gobblecoque, perhaps? Something about the floppy features and source of humor just makes me want to see him stick around.
 

Tomstonemale

New member
Jun 25, 2014
2
0
0
The Last Melon said:
Leaving aside all the controversy that I'd never heard of, I'm a little confused as to why Yahtzee is review this game. Slow release period? Baiting fanboys? Just a sort of general "fuck you"?
He literally said why he did it in the video. The part when he said it was sad why he's doing the review.
 

Madmanonfire

New member
Jul 24, 2009
301
0
0
tm96 said:
I didn't expect this but really should I be surprised since the internet got into furore over the patch that removed same sex relationship and also was a gamebreaking glitch that nobody understood, forcing Nintendo to say something stupid. Any publicity is good publicity i guess.
Fixed that for you.

Toblo1 said:
I can't help but think that Yahtzee made this video JUST so he could add "NINTY IS HOMOPHOBIC" to his list of why he hates Nintendo......
Even if this were the case, I'm glad he waited so long to do a video on Tomodachi Life. Now that the issue has passed, people can stop being complete idiots about it and we can have a thread about the game that won't devolve into a nonsensical argument.

Regarding the video, Yahtzee did a good job in showing what the game was about: inserting characters you want into the game and seeing what happens. Great ZP this week.
 

gamegod25

New member
Jul 10, 2008
863
0
0
This game was certainly an odd curiosity to me. It looked like a clone of Animal Crossing which seemed needlessly redundant since anyone interested in AC isn't likely to jump ship just to play with Mii's instead of cute animals. Additionally its also a 3DS game which only added to the feelings of a fifth wheel to a wagon. This is all before getting to the gameplay that, well...it didn't seem to have any. The few short trailers and clips I had seen had stuff happening but non of it looked like what could be called a game. Even just from a cursory glance it seemed obvious that TL was mindless filler, nothingness trying to give the illusion of substance. If there is a reason for this game (and using that term generously) to exist it's not apparent to me, and I'm someone who does enjoy Animal Crossing...for a little while.
 

Megazuurkool

New member
Feb 6, 2014
5
0
0
I ordered Jam the 16th of January through my local retailer and it still hasn't arrived! It better be really good now or i'll be pissed.