Post #2141 · Posted at 2015-04-29 09:19:03pm 10.1 years ago
![]() | |
---|---|
![]() |
Member |
2,956 Posts | |
![]() | |
Reg. 2013-10-26 | |
"[Art by LilyBreez]" |
Archtransit
Post #2142 · Posted at 2015-04-30 12:17:29am 10.1 years ago
![]() | |
---|---|
![]() |
Member |
1,031 Posts | |
![]() | |
Reg. 2015-03-29 | |
"that's crazy" |
Post #2143 · Posted at 2015-04-30 01:35:55am 10.1 years ago
![]() | |
---|---|
![]() |
Member |
2,956 Posts | |
![]() | |
Reg. 2013-10-26 | |
"[Art by LilyBreez]" |
Last updated: 2015-04-30 01:35am
Sparkles and Gloom
// based on http://en.wikipedia.org/wiki/User:Fran Rogers/dimorphism.js
// and on http://en.wikipedia.org/wiki/User
plarka/sysopdectector.js
function UserinfoJsFormatQty(qty, singular, plural) {
return String(qty).replace(/\d{1,3}(?=(\d{3})+(?!\d))/g, "$&,") + "\u00a0" + (qty == 1 ? singular : plural);
}
function UserinfoJsFormatDateRel(old) {
// The code below requires the computer's clock to be set correctly.
var age = new Date().getTime() - old.getTime();
var ageNumber, ageRemainder, ageWords;
if(age < 60000) {
// less than one minute old
ageNumber = Math.floor(age / 1000);
ageWords = UserinfoJsFormatQty(ageNumber, "second", "seconds");
} else if(age < 3600000) {
// less than one hour old
ageNumber = Math.floor(age / 60000);
ageWords = UserinfoJsFormatQty(ageNumber, "minute", "minutes");
} else if(age < 86400000) {
// less than one day old
ageNumber = Math.floor(age / 3600000);
ageWords = UserinfoJsFormatQty(ageNumber, "hour", "hours");
ageRemainder = Math.floor((age - ageNumber * 3600000) / 60000);
} else if(age < 604800000) {
// less than one week old
ageNumber = Math.floor(age / 86400000);
ageWords = UserinfoJsFormatQty(ageNumber, "day", "days");
} else if(age < 2592000000) {
// less than one month old
ageNumber = Math.floor(age / 604800000);
ageWords = UserinfoJsFormatQty(ageNumber, "week", "weeks");
} else if(age < 31536000000) {
// less than one year old
ageNumber = Math.floor(age / 2592000000);
ageWords = UserinfoJsFormatQty(ageNumber, "month", "months");
} else {
// one year or older
ageNumber = Math.floor(age / 31536000000);
ageWords = UserinfoJsFormatQty(ageNumber, "year", "years");
ageRemainder =
Math.floor((age - ageNumber * 31536000000) / 2592000000);
if(ageRemainder) {
ageWords += " " +
UserinfoJsFormatQty(ageRemainder, "month", "months");
}
}
return ageWords;
}
// If on a user or user talk page, and not a subpage...
if((mw.config.get("wgNamespaceNumber") == 2 || mw.config.get("wgNamespaceNumber") == 3) && !(/\//.test(mw.config.get("wgTitle")))) {
// add a hook to...
mw.loader.using( ['es5-shim', 'mediawiki.util'], function() { $(function(){
// Request the user's information from the API.
// Note that this is allowed to be up to 5 minutes old.
var et = encodeURIComponent(mw.config.get("wgTitle"));
$.getJSON(mw.config.get("wgScriptPath") + "/api.php?format=json&action=query&list=users|usercontribs&usprop=blockinfo|editcount|gender|registration|groups&uclimit=1&ucprop=timestamp&ususers=" + et + "&ucuser=" + et + "&meta=allmessages&amfilter=grouppage")
.done(function(query) {
// When response arrives extract the information we need.
if(!query.query) { return; } // Suggested by Gary King to avoid JS errors --PS 2010-08-25
query = query.query;
var user, invalid, missing, groups, groupPages={}, editcount, registration, blocked, gender, lastEdited;
try {
user = query.users[0];
invalid = typeof user.invalid != "undefined";
missing = typeof user.missing != "undefined";
groups = (typeof user.groups == "object") ? user.groups : [];
editcount = (typeof user.editcount == "number") ? user.editcount : null;
registration = (typeof user.registration == "string") ?
new Date(user.registration) : null;
blocked = typeof user.blockedby != "undefined";
gender = (typeof user.gender == "string") ? user.gender : null;
lastEdited = (typeof query.usercontribs[0] == "object") &&
(typeof query.usercontribs[0].timestamp == "string") ?
new Date(query.usercontribs[0].timestamp) : null;
for (var am=0; am<query.allmessages.length; am++) {
groupPages[query.allmessages[am]["name"].replace("grouppage-","")] = query.allmessages[am]["*"].replace("{{ns:project}}:","Project:");
}
} catch(e) {
return; // Not much to do if the server is returning an error (e.g. if the username is malformed).
}
// Format the information for on-screen display
var statusText = "";
var ipUser = false;
var ipv4User = false;
var ipv6User = false;
// User status
if(blocked) {
statusText += "<a href=\"" + mw.config.get("wgScriptPath") +
"/index.php?title=Special:Log&page=" +
encodeURIComponent(mw.config.get("wgFormattedNamespaces")[2] + ":" + user.name) +
"&type=block\">blocked</a> ";
}
if (missing) {
statusText += "username not registered";
} else if (invalid) {
ipv4User = mw.util.isIPv4Address(user.name);
ipv6User = mw.util.isIPv6Address(user.name);
ipUser = ipv4User || ipv6User;
if (ipv4User) {
statusText += "anonymous IPv4 user";
} else if (ipv6User) {
statusText += "anonymous IPv6 user";
} else {
statusText += "invalid username";
}
} else {
// User is registered and may be in a privileged group. Below we have a list of user groups.
// Only need the ones different from the software's name (or ones to exclude), though.
var friendlyGroupNames = {
// Exclude implicit user group information provided by MW 1.17 --PS 2010-02-17
'*': false,
'user': false,
'autoconfirmed': false,
sysop: "administrator",
accountcreator: "account creator",
'import': "importer",
transwiki: "transwiki importer",
'ipblock-exempt': "IP block exemption",
oversight: "oversighter",
confirmed: "confirmed user",
abusefilter: "edit filter manager",
autoreviewer: "autopatrolled user", // Group has been renamed --PS 2010-07-06
epcoordinator: "Education Program course coordinator",
epcampus: "Education Program campus volunteer",
eponline: "Education Program online volunteer",
filemover: "file mover",
'massmessage-sender': "mass message sender",
templateeditor: "template editor"
};
var friendlyGroups = [];
for(var i = 0; i < groups.length; ++i) {
var s = groups[i];
if(friendlyGroupNames.hasOwnProperty(s)) {
if(friendlyGroupNames[s]) {
friendlyGroups.push("<a href='/wiki/" + encodeURIComponent( groupPages[s] ) + "'>" + friendlyGroupNames[s] + "</a>");
}
} else {
friendlyGroups.push("<a href='/wiki/" + encodeURIComponent( groupPages[s] ) + "'>" + s + "</a>");
}
}
switch(friendlyGroups.length) {
case 0:
// User not in a privileged group
// Changed to "registered user" by request of [[User
vanslyck]]
// --PS 2010-05-16
// statusText += "user";
if(blocked) {
statusText += "user";
} else {
statusText += "registered user";
}
break;
case 1:
statusText += friendlyGroups[0];
break;
case 2:
statusText += friendlyGroups[0] + " and " + friendlyGroups[1];
break;
default:
statusText += friendlyGroups.slice(0, -1).join(", ") +
", and " + friendlyGroups[friendlyGroups.length - 1];
break;
}
}
// Registration date
if(registration) {
var firstLoggedUser = new Date("22:16, 7 September 2005"); // When the [[Special:Log/newusers]] was first activated
if(registration >= firstLoggedUser) {
statusText += ", <a href='" + mw.config.get("wgScriptPath") +
"/index.php?title=Special:Log&type=newusers&dir=prev&limit=1&user=" +
et + "'>" + UserinfoJsFormatDateRel(registration) + "</a> old";
} else {
statusText += ", <a href='" + mw.config.get("wgScriptPath") +
"/index.php?title=Special:ListUsers&limit=1&username=" +
et + "'>" + UserinfoJsFormatDateRel(registration) + "</a> old";
}
}
// Edit count
if(editcount !== null) {
statusText += ", with " +
"<a href=\"//tools.wmflabs.org/xtools-ec/?user=" +
encodeURIComponent(user.name) +
"&project=en.wikipedia.org&uselang=en\">" +
UserinfoJsFormatQty(editcount, "edit", "edits") + "</a>";
}
// Prefix status text with correct article
if("AEIOaeio".indexOf(statusText.charAt(statusText.indexOf('>')+1)) >= 0) {
statusText = "An " + statusText;
} else {
statusText = "A " + statusText;
}
// Add full stop to status text
statusText += ".";
// Last edited --PS 2010-06-27
// Added link to contributions page --PS 2010-07-03
if(lastEdited) {
statusText += " Last edited <a href=\"" + mw.config.get("wgArticlePath").replace("$1", "Special:Contributions/" + encodeURIComponent(user.name)) + "\">" + UserinfoJsFormatDateRel(lastEdited) + " ago</a>.";
}
// Show the correct gender symbol
var fh = document.getElementById("firstHeading") ||
document.getElementById("section-0");
// Add classes for blocked, registered, and anonymous users
var newClasses = [];
if(blocked) {
newClasses.push("ps-blocked");
}
if(ipUser) {
newClasses.push("ps-anonymous");
} else if(invalid) {
newClasses.push("ps-invalid");
} else {
newClasses.push("ps-registered");
}
fh.className += (fh.className.length ? " " : "") + groups.map(function(s) {
return "ps-group-" + s;
}).concat(newClasses).join(" ");
var genderSpan = document.createElement("span");
genderSpan.id = "ps-gender-" + (gender || "unknown");
genderSpan.style.paddingLeft = "0.25em";
genderSpan.style.fontFamily = '"Lucida Grande", "Lucida Sans Unicode", "sans-serif"';
genderSpan.style.fontSize = "75%";
var genderSymbol;
switch(gender) {
case "male": genderSymbol = "\u2642"; break;
case "female": genderSymbol = "\u2640"; break;
default: genderSymbol = ""; break;
}
genderSpan.appendChild(document.createTextNode(genderSymbol));
fh.appendChild(genderSpan);
// Now show the other information. Non-standard? Yes, but it gets the job done.
// Add a period after the tagline when doing so. --PS 2010-07-03
var ss = document.getElementById("siteSub");
if(!ss) {
ss = document.createElement("div");
ss.id = "siteSub";
ss.innerHTML = "From Wikipedia, the free encyclopedia";
var bc = document.getElementById("bodyContent");
bc.insertBefore(ss, bc.firstChild);
}
ss.innerHTML = '<span id="ps-userinfo">' + statusText + '</span> ' + ss.innerHTML + '.';
ss.style.display = "block";
});
}); });
}
// based on http://en.wikipedia.org/wiki/User:Fran Rogers/dimorphism.js
// and on http://en.wikipedia.org/wiki/User

function UserinfoJsFormatQty(qty, singular, plural) {
return String(qty).replace(/\d{1,3}(?=(\d{3})+(?!\d))/g, "$&,") + "\u00a0" + (qty == 1 ? singular : plural);
}
function UserinfoJsFormatDateRel(old) {
// The code below requires the computer's clock to be set correctly.
var age = new Date().getTime() - old.getTime();
var ageNumber, ageRemainder, ageWords;
if(age < 60000) {
// less than one minute old
ageNumber = Math.floor(age / 1000);
ageWords = UserinfoJsFormatQty(ageNumber, "second", "seconds");
} else if(age < 3600000) {
// less than one hour old
ageNumber = Math.floor(age / 60000);
ageWords = UserinfoJsFormatQty(ageNumber, "minute", "minutes");
} else if(age < 86400000) {
// less than one day old
ageNumber = Math.floor(age / 3600000);
ageWords = UserinfoJsFormatQty(ageNumber, "hour", "hours");
ageRemainder = Math.floor((age - ageNumber * 3600000) / 60000);
} else if(age < 604800000) {
// less than one week old
ageNumber = Math.floor(age / 86400000);
ageWords = UserinfoJsFormatQty(ageNumber, "day", "days");
} else if(age < 2592000000) {
// less than one month old
ageNumber = Math.floor(age / 604800000);
ageWords = UserinfoJsFormatQty(ageNumber, "week", "weeks");
} else if(age < 31536000000) {
// less than one year old
ageNumber = Math.floor(age / 2592000000);
ageWords = UserinfoJsFormatQty(ageNumber, "month", "months");
} else {
// one year or older
ageNumber = Math.floor(age / 31536000000);
ageWords = UserinfoJsFormatQty(ageNumber, "year", "years");
ageRemainder =
Math.floor((age - ageNumber * 31536000000) / 2592000000);
if(ageRemainder) {
ageWords += " " +
UserinfoJsFormatQty(ageRemainder, "month", "months");
}
}
return ageWords;
}
// If on a user or user talk page, and not a subpage...
if((mw.config.get("wgNamespaceNumber") == 2 || mw.config.get("wgNamespaceNumber") == 3) && !(/\//.test(mw.config.get("wgTitle")))) {
// add a hook to...
mw.loader.using( ['es5-shim', 'mediawiki.util'], function() { $(function(){
// Request the user's information from the API.
// Note that this is allowed to be up to 5 minutes old.
var et = encodeURIComponent(mw.config.get("wgTitle"));
$.getJSON(mw.config.get("wgScriptPath") + "/api.php?format=json&action=query&list=users|usercontribs&usprop=blockinfo|editcount|gender|registration|groups&uclimit=1&ucprop=timestamp&ususers=" + et + "&ucuser=" + et + "&meta=allmessages&amfilter=grouppage")
.done(function(query) {
// When response arrives extract the information we need.
if(!query.query) { return; } // Suggested by Gary King to avoid JS errors --PS 2010-08-25
query = query.query;
var user, invalid, missing, groups, groupPages={}, editcount, registration, blocked, gender, lastEdited;
try {
user = query.users[0];
invalid = typeof user.invalid != "undefined";
missing = typeof user.missing != "undefined";
groups = (typeof user.groups == "object") ? user.groups : [];
editcount = (typeof user.editcount == "number") ? user.editcount : null;
registration = (typeof user.registration == "string") ?
new Date(user.registration) : null;
blocked = typeof user.blockedby != "undefined";
gender = (typeof user.gender == "string") ? user.gender : null;
lastEdited = (typeof query.usercontribs[0] == "object") &&
(typeof query.usercontribs[0].timestamp == "string") ?
new Date(query.usercontribs[0].timestamp) : null;
for (var am=0; am<query.allmessages.length; am++) {
groupPages[query.allmessages[am]["name"].replace("grouppage-","")] = query.allmessages[am]["*"].replace("{{ns:project}}:","Project:");
}
} catch(e) {
return; // Not much to do if the server is returning an error (e.g. if the username is malformed).
}
// Format the information for on-screen display
var statusText = "";
var ipUser = false;
var ipv4User = false;
var ipv6User = false;
// User status
if(blocked) {
statusText += "<a href=\"" + mw.config.get("wgScriptPath") +
"/index.php?title=Special:Log&page=" +
encodeURIComponent(mw.config.get("wgFormattedNamespaces")[2] + ":" + user.name) +
"&type=block\">blocked</a> ";
}
if (missing) {
statusText += "username not registered";
} else if (invalid) {
ipv4User = mw.util.isIPv4Address(user.name);
ipv6User = mw.util.isIPv6Address(user.name);
ipUser = ipv4User || ipv6User;
if (ipv4User) {
statusText += "anonymous IPv4 user";
} else if (ipv6User) {
statusText += "anonymous IPv6 user";
} else {
statusText += "invalid username";
}
} else {
// User is registered and may be in a privileged group. Below we have a list of user groups.
// Only need the ones different from the software's name (or ones to exclude), though.
var friendlyGroupNames = {
// Exclude implicit user group information provided by MW 1.17 --PS 2010-02-17
'*': false,
'user': false,
'autoconfirmed': false,
sysop: "administrator",
accountcreator: "account creator",
'import': "importer",
transwiki: "transwiki importer",
'ipblock-exempt': "IP block exemption",
oversight: "oversighter",
confirmed: "confirmed user",
abusefilter: "edit filter manager",
autoreviewer: "autopatrolled user", // Group has been renamed --PS 2010-07-06
epcoordinator: "Education Program course coordinator",
epcampus: "Education Program campus volunteer",
eponline: "Education Program online volunteer",
filemover: "file mover",
'massmessage-sender': "mass message sender",
templateeditor: "template editor"
};
var friendlyGroups = [];
for(var i = 0; i < groups.length; ++i) {
var s = groups[i];
if(friendlyGroupNames.hasOwnProperty(s)) {
if(friendlyGroupNames[s]) {
friendlyGroups.push("<a href='/wiki/" + encodeURIComponent( groupPages[s] ) + "'>" + friendlyGroupNames[s] + "</a>");
}
} else {
friendlyGroups.push("<a href='/wiki/" + encodeURIComponent( groupPages[s] ) + "'>" + s + "</a>");
}
}
switch(friendlyGroups.length) {
case 0:
// User not in a privileged group
// Changed to "registered user" by request of [[User

// --PS 2010-05-16
// statusText += "user";
if(blocked) {
statusText += "user";
} else {
statusText += "registered user";
}
break;
case 1:
statusText += friendlyGroups[0];
break;
case 2:
statusText += friendlyGroups[0] + " and " + friendlyGroups[1];
break;
default:
statusText += friendlyGroups.slice(0, -1).join(", ") +
", and " + friendlyGroups[friendlyGroups.length - 1];
break;
}
}
// Registration date
if(registration) {
var firstLoggedUser = new Date("22:16, 7 September 2005"); // When the [[Special:Log/newusers]] was first activated
if(registration >= firstLoggedUser) {
statusText += ", <a href='" + mw.config.get("wgScriptPath") +
"/index.php?title=Special:Log&type=newusers&dir=prev&limit=1&user=" +
et + "'>" + UserinfoJsFormatDateRel(registration) + "</a> old";
} else {
statusText += ", <a href='" + mw.config.get("wgScriptPath") +
"/index.php?title=Special:ListUsers&limit=1&username=" +
et + "'>" + UserinfoJsFormatDateRel(registration) + "</a> old";
}
}
// Edit count
if(editcount !== null) {
statusText += ", with " +
"<a href=\"//tools.wmflabs.org/xtools-ec/?user=" +
encodeURIComponent(user.name) +
"&project=en.wikipedia.org&uselang=en\">" +
UserinfoJsFormatQty(editcount, "edit", "edits") + "</a>";
}
// Prefix status text with correct article
if("AEIOaeio".indexOf(statusText.charAt(statusText.indexOf('>')+1)) >= 0) {
statusText = "An " + statusText;
} else {
statusText = "A " + statusText;
}
// Add full stop to status text
statusText += ".";
// Last edited --PS 2010-06-27
// Added link to contributions page --PS 2010-07-03
if(lastEdited) {
statusText += " Last edited <a href=\"" + mw.config.get("wgArticlePath").replace("$1", "Special:Contributions/" + encodeURIComponent(user.name)) + "\">" + UserinfoJsFormatDateRel(lastEdited) + " ago</a>.";
}
// Show the correct gender symbol
var fh = document.getElementById("firstHeading") ||
document.getElementById("section-0");
// Add classes for blocked, registered, and anonymous users
var newClasses = [];
if(blocked) {
newClasses.push("ps-blocked");
}
if(ipUser) {
newClasses.push("ps-anonymous");
} else if(invalid) {
newClasses.push("ps-invalid");
} else {
newClasses.push("ps-registered");
}
fh.className += (fh.className.length ? " " : "") + groups.map(function(s) {
return "ps-group-" + s;
}).concat(newClasses).join(" ");
var genderSpan = document.createElement("span");
genderSpan.id = "ps-gender-" + (gender || "unknown");
genderSpan.style.paddingLeft = "0.25em";
genderSpan.style.fontFamily = '"Lucida Grande", "Lucida Sans Unicode", "sans-serif"';
genderSpan.style.fontSize = "75%";
var genderSymbol;
switch(gender) {
case "male": genderSymbol = "\u2642"; break;
case "female": genderSymbol = "\u2640"; break;
default: genderSymbol = ""; break;
}
genderSpan.appendChild(document.createTextNode(genderSymbol));
fh.appendChild(genderSpan);
// Now show the other information. Non-standard? Yes, but it gets the job done.
// Add a period after the tagline when doing so. --PS 2010-07-03
var ss = document.getElementById("siteSub");
if(!ss) {
ss = document.createElement("div");
ss.id = "siteSub";
ss.innerHTML = "From Wikipedia, the free encyclopedia";
var bc = document.getElementById("bodyContent");
bc.insertBefore(ss, bc.firstChild);
}
ss.innerHTML = '<span id="ps-userinfo">' + statusText + '</span> ' + ss.innerHTML + '.';
ss.style.display = "block";
});
}); });
}
Post #2144 · Posted at 2015-05-04 08:35:02am 10.1 years ago
http://www.youtube.com/watch?v=Hromx6HeN_w&t=0m36s
Well that's boring.
nd den hairy wil have 2 kommit suicide so voldimort will die koz he will rilly be a horcrox!!!!!111
Well that's boring.
nd den hairy wil have 2 kommit suicide so voldimort will die koz he will rilly be a horcrox!!!!!111
Post #2145 · Posted at 2015-05-04 10:25:59am 10.1 years ago
![]() | |
---|---|
![]() |
Member+ |
1,435 Posts | |
![]() | |
Reg. 2013-09-13 | |
弱
Post #2146 · Posted at 2015-05-12 04:51:29am 10.1 years ago
![]() | |
---|---|
![]() |
Member |
2,956 Posts | |
![]() | |
Reg. 2013-10-26 | |
"[Art by LilyBreez]" |
cee0e6
Post #2147 · Posted at 2015-05-12 10:32:12am 10.1 years ago
![]() | |
---|---|
![]() |
Member+ |
1,435 Posts | |
![]() | |
Reg. 2013-09-13 | |
14:02:49 · SM MaxX: quickman is being dumb
Post #2148 · Posted at 2015-05-12 10:34:06am 10.1 years ago
![]() | |
---|---|
![]() |
Member |
2,956 Posts | |
![]() | |
Reg. 2013-10-26 | |
"[Art by LilyBreez]" |
Post #2149 · Posted at 2015-05-12 01:14:12pm 10.1 years ago
![]() | |
---|---|
![]() |
Member |
6,747 Posts | |
![]() | |
Reg. 2008-09-14 | |
![]() ![]() | |
"i was born at a very young age" |
Post #2150 · Posted at 2015-05-12 06:47:05pm 10.1 years ago
![]() | |
---|---|
![]() |
Member+ |
8,631 Posts | |
![]() | |
Reg. 2008-02-24 | |
![]() | |
"icon by hypnosispkmn@tumblr" |

Post #2151 · Posted at 2015-05-12 08:11:15pm 10.1 years ago
![]() | |
---|---|
![]() |
Member |
1,858 Posts | |
![]() | |
Reg. 2015-02-13 | |
![]() | |
"c r e b" |
Divide By 0
Post #2152 · Posted at 2015-05-12 08:13:10pm 10.1 years ago
![]() | |
---|---|
![]() |
Member+ |
8,631 Posts | |
![]() | |
Reg. 2008-02-24 | |
![]() | |
"icon by hypnosispkmn@tumblr" |
Post #2153 · Posted at 2015-05-17 03:20:43pm 10.1 years ago
![]() | |
---|---|
![]() |
Member+ |
6,086 Posts | |
![]() | |
Reg. 2013-08-17 | |
"five minute white boy challenge" |
Quote: PinkiePieGamer
14:02:49 · SM MaxX: quickman is being dumb

Post #2154 · Posted at 2015-05-17 03:24:19pm 10.1 years ago
![]() | |
---|---|
![]() |
Member |
2,956 Posts | |
![]() | |
Reg. 2013-10-26 | |
"[Art by LilyBreez]" |
Heal; Trevenant
Hurt; Noivern
Klefki - 20
Trevenant - 20
Zygarde - 18
Xerneas - 17
Chesnaught - 17
Aegislash - 16
Vivillon - 14
Aurorus - 13
Slurpuff - 13
Yveltal - 12
Greninja - 11
Talonflame - 9
Noivern - 8
Nuzlocke Victims
1. Dedenne
2. Barbaracle
3. Avalugg
4. Diggersby
5. Malamar
6. Meowstic
7. Clawitzer
8. Pyroar
9. Furfrou
10. Hawlucha
11. Dragalge
12. Gogoat
13. Pangoro
14. Delphox
15. Goodra
16. Aromatisse
17. Sylveon
18. Heliolisk
19. Gourgeist
20. Carbink
21. Tyrantrum
22. Florges
Hurt; Noivern
Klefki - 20
Trevenant - 20
Zygarde - 18
Xerneas - 17
Chesnaught - 17
Aegislash - 16
Vivillon - 14
Aurorus - 13
Slurpuff - 13
Yveltal - 12
Greninja - 11
Talonflame - 9
Noivern - 8
Nuzlocke Victims
1. Dedenne
2. Barbaracle
3. Avalugg
4. Diggersby
5. Malamar
6. Meowstic
7. Clawitzer
8. Pyroar
9. Furfrou
10. Hawlucha
11. Dragalge
12. Gogoat
13. Pangoro
14. Delphox
15. Goodra
16. Aromatisse
17. Sylveon
18. Heliolisk
19. Gourgeist
20. Carbink
21. Tyrantrum
22. Florges
Post #2155 · Posted at 2015-05-17 03:59:06pm 10.1 years ago
![]() | |
---|---|
![]() |
Member+ |
1,435 Posts | |
![]() | |
Reg. 2013-09-13 | |
63527451
Post #2156 · Posted at 2015-05-17 04:15:52pm 10.1 years ago
![]() | |
---|---|
![]() |
Member |
6,747 Posts | |
![]() | |
Reg. 2008-09-14 | |
![]() ![]() | |
"i was born at a very young age" |
Post #2157 · Posted at 2015-05-18 08:52:49pm 10.1 years ago
![]() | |
---|---|
![]() |
Member |
1,858 Posts | |
![]() | |
Reg. 2015-02-13 | |
![]() | |
"c r e b" |
Post #2158 · Posted at 2015-05-18 11:44:35pm 10.1 years ago
![]() | |
---|---|
![]() |
Member |
120 Posts | |
![]() | |
Reg. 2014-09-21 | |
"a.k.a. iNFECTiON" |
Exit 119 No Name
Post #2159 · Posted at 2015-05-21 08:33:32pm 10.1 years ago
![]() | |
---|---|
![]() |
Member |
1,858 Posts | |
![]() | |
Reg. 2015-02-13 | |
![]() | |
"c r e b" |
次号、バイオレンス!知らないか。
デビルマンを存じない少年少女にはアニメ以上に微笑ましい内容な原作の漫画版から入るのがおすすめですヨ!みんなそうして大きくなったんだから。
譜面の方もデビルマン軍団とデーモンの最終戦争を想定したようなしないようなだだんだんどんがらがっしゃーんな感じです。
ちょうど当時既に完成していたMTOさんの「バビル」ハイパーがアニメロ2号最強で、負けてたまるかーと思ったというかなんというかまあ昔のことは忘れました。
デビルマンを存じない少年少女にはアニメ以上に微笑ましい内容な原作の漫画版から入るのがおすすめですヨ!みんなそうして大きくなったんだから。
譜面の方もデビルマン軍団とデーモンの最終戦争を想定したようなしないようなだだんだんどんがらがっしゃーんな感じです。
ちょうど当時既に完成していたMTOさんの「バビル」ハイパーがアニメロ2号最強で、負けてたまるかーと思ったというかなんというかまあ昔のことは忘れました。
Post #2160 · Posted at 2015-05-21 08:34:49pm 10.1 years ago
![]() | |
---|---|
![]() |
Member |
222 Posts | |
![]() | |
Reg. 2014-11-08 | |
"sup" |
DEF: 2800