#game-suggestions
1 messages · Page 12 of 1
Even local multiplayer would be fine, not really a problem with hamachi or similar applications
or we just appreciate the insane amount of effort games like this take and realise that multiplayer isn't really likely
^^^
@somber sun appreciating and hoping for more is not mutually exclusive 😉
I mean pokemon uranium has it, but i agree that it might not be feasible for this project
Uranium also has a whole team, and already got a notice from nintendo
^^^^^^^
Well, to be fair. this is a channel to make suggestion. As unrealistic as the suggestion are. It's still a suggestion =p
Fair Point.
What a nice suggestion for the game
When the body would give an element already provided by the head, it gives its other element instead if it has one ( #fusion-faq #9). Could you let this happen even when the body normally only fuses as a certain type? (e.g. Sunflora/Venusaur being Grass/Poison, Onix/Geodude being Rock/Ground, or especially any two normal/flying types together being Normal/Flying.)
Yes because some people still want to get a normal/flying fusion
(Not sure if something like this has already been suggested before, and I think not everyone would like the idea but,) maybe some... less fortunate pokemon can have some exclusive moves/abilities to give them a niche and a reason to be chosen over other better pokemon, like Fearow getting oblivion wing or Beedrill getting adaptability or something
And with no more pokemon being able to be added, additions like those could feel like way more options are opened without taking much extra space (I think)
Schromms already did this to some mons with moves (mostly tm moves). Not too many and hard to know which ones, because there isnt really any documentation on it. (Actually there is a tm list from schrroms somewhere in this discord. Maybe chippy could add a link to the Fusion FAQ)
We should just post any suggestions we come up with here so schrroms can see them.
an option to randomize trades and gift pokemon
That would be nice
Mega evolution and more pokemon ( meltan for exemple ) or online batle or trade ( i dunno if it's not too hard...)
For online things would need to pay a server
More pokemon would rape the file size, megas would be weird with fusions, online battles/trading schrroms would have to pay, and it's a non-profit game
What Dino said
Or possibility to enter a server code( even if it's not official server )
That will be like DPP BW online feature not official but some fan create private server
Or do pear 2 pear if it's possible ?
i doubt it, but we can dream
Yeah but game is already great ( but why do a limit for Wonder trade)
pretty sure you can buy a wondertrade pass eventually
How and why dont just remove the limit Wonder trade
because then it'd be really unbalanced, having a limit makes it more random
Even After win all gym badge
But where
ask in #playthrough-talk and idk
since forretress can learn shell smash
petition for blastoise
to also learn it 😤
misdrevius and gastly should also be in the tomb inside of lavender town
instead of just duskulls
Wish that they didn't remove randomzed rock smash items.
@simple cliff This isnt really a suggestion..I suggest asking questions like this in #general
or #playthrough-talk
maybe make elecgtric types paralasis resistant?
is it possible to ad a gen 6 thing to gen 5 rules?
if you have time the new japeal sprites would be sick, I dunno how to get a mass dump of them or I'd do it for myself
Gold Bottle Cap : https://bulbapedia.bulbagarden.net/wiki/Gold_Bottle_Cap
@onyx oyster Yeah the new sprites are really cool. I looked into it for a bit an I couldn't figure out a way to get the encoded sprites from an url or api call like I did to with older version. So yeah it's probably not going to happen unless I can figure out something else to rip the sprites, unfortunately.
download one by one
You could write a bot that load a page, take the image and then increment the number in the url and so on and so for. But that would take ages
(I did that to get some manga pages in a read online kind of website.)
But it wasn't 90000+ sprite to get >.>
it's more or less what I did to rip the sprites last time (and it did take ages lol), but now there isn't a way to get a specific fusion just from the url as far as I can see.
so the bot would have to actually interact with the page to select the pokemon from the js menu and click the fuse button each time and it would probably be a huge pain in the ass to make
I found the url for where the images are probably being hosted but I don't know how the files were named
yeah I found this url while diggin around https://japeal.com/wordpress/wp-content/themes/total/PKM/callAll2.php?type=all&p1id=210&p2id=527 ,which is kind of what I was looking for, but idk if there's anything that can be done with that response. No idea what those numbers mean.
yea the ids are the pokemon in the fusion but I don't see how you would get an image out of the rest
wouldnt you have to ask for permission first anyway? so maybe if they allow that for the new sprites they give you an exclusive way to download them
^
Monarch, the main issue is that the images aren't hosted at all. If you dig a bit you see that t he page retreive part of the base pokemon and then I assume some javascript bit merge the bits together in the right way
(the part of base pokemon are indeed hosted)
(the resulting pokemon is not)
anti theft measures huh
probably not. Anti hosting hundred of thousands of images
that way the webmaster only have to host about 1600 images instead of the resulting fusions
basically, they're generated on the spot
Adding new pokemon is easier as well. since he don't have to regenerate the all thing every time
yes Dino
true, i didnt consider the amount of images that would have to be hosted
@rough gull there is the possibility to have more gen pokemon with the japeal update?
Problem are not the sprites themselves, but the amount of sprites the game can fit. Right now the engine can't handle anymore, it's already at its limit
i think its the ripping from the site too
oh ok
Temporarily a sword/shield channel so peeps like me can go in with minimal spoilers?
done #588094801371725835
❤
👏
swap out the Erika sprite with this one from Bean. Her current hair shifts weirdly when she's walking north.
nice!
@hardy pumice you're nice
Belatedly, here's an even more updated version to fix the tiny pixel that strayed out of range on her forward step
Here is an even more updated version 
i suggest to add dazzling gleam in the game since some other less important fairy moves are already in. some pokemon that get it by TM crave for it
that doesn't seem like a problem mainly because moonblast is also a TM and iirc most of the mons that would normally learn dgleam learn moonblast in rhis game
espeon, gengar and surely some others too are looking at you with eyes full of judgment
A tool to detect incorrect names.
149.313_1.png
182-227.png
217.313png
248.149.docx
25.png
269.278_1.png
288.png
290.png
296.png
297.png
73.110.png.oof
76.76
9.300_1.png
beebeon.png
import os
import re
def is_not_correct(filename):
#basic_regex = "^[0-9]{1,3}\.[0-9]{1,3}\.png$"
extended_regex = "^[0-9]{1,3}\.[0-9]{1,3}( \([1-9]+\))*\.png$"
return re.search(extended_regex, filename)==None
sprite_folder = "CustomBattlers"
current_dir = os.path.dirname(__file__)
target_dir = os.path.join(current_dir, sprite_folder)
anomalies = []
# Step 1 : Analyze but ignore the "_readme.txt"
for filename in os.listdir(target_dir):
if(is_not_correct(filename) and filename[0]!="_"):
anomalies.append(filename)
# Step 2 : Display anomalies
for anomaly in anomalies:
print(anomaly)
I used DemICE's folder to test my code, was very helpful.
the regex can be adapted to accept/ignore some naming conventions
maybe 290.png (single pokemon) or 269.278_1.png (fusion with _) could be acceptable naming conventions. But i doubt that 73.110.png.oof or 248.149.docx are fine 
funny, I wrote a similair code to delete the duplicate in my custom battler folder ahah
import re
import os
files = os.listdir('.')
#print(files)
list_of_duplicate = []
for f in files:
if re.match('\d{1,3}\.\d{1,3} ?\(\d+\)\.png', f):
list_of_duplicate.append(f)
os.remove(f)
print(len(list_of_duplicate))
I was a while ago though
and my script had to be within the folder
ok wow that's very similar xD
hmm that's nice 
why cant clefairy learn play rough
Pretty sure it cant learn it in the main games either
It wouldn't really make sense anyway
Clefable is very much not a physical attacker
True true
I used DemICE's folder to test my code, was very helpful. the thing is, as i wrote in the mod.txt i deliberately changed some of the icon names because the fusions i used for those trainers were the reverse of the ones having the good sprites. although the Ursanoir case was indeed a mistype of my part
73.110.png.oof i pretty much just "oof"d this one because i found it uglier than the automatically made one xd of course whether one wants to use it or not is up to them in the end i guess
P.S. did you try any of the fights ?
press F1 (the key on your keyboard) and check off the checkbox at the end onf the window. (it's in japanese but one is for music, the other for sound effect)
P.S. did you try any of the fights ? no :v
Insert Missingno suggestion #9874.
Allow female Kirlia to evolve into Gallade too because why not. Also butch sword psychic pokemon.
Switch the Nidoking's/Nidoqueen's abilities. It makes more sense for a Poison/x to have Poison Point, than for a x/Ground to have it.
you could also say, that the poisonous thorns are more likely to be on the body of the pokemon.
also, rivalry coming from the brain rather than the body.
stuff like intimidate on arcanine body could be changed though
but too many differences could make the game too inconsistent and hard to understand, so it should just stay like this.
instead the secret capsules should be introduced as a rare item in the early/mid game. maybe getting one from a hotel quest around 2-3rd gym or from a difficult trainer battle.
Frog-man, can we have the same numeration for fusion Sprites and Icons please?
I'll think about it
Wait since when is your name frogman😂
👀
😂
Btw, now that I have your attention schrroms frogman..have you been working on the game now that it has been finished to a certain degree
I've been working on some additional post game stuff, but I'm taking it slowly so don't expect it too soon
Good news
can you add smeargle to the secret garden
dont forget deutsch and portugues
Might aswell just change it into #not-english
no
Suggestion: a trainer somewhere in the game whose team consists of Golbat/Nidoking, Golduck/Slowking, Goldeen/Seaking, and Golem/Slaking
golking is my favorite
pkm trainer golking
Golking is the best 😤
Wasn't there a trainer on the east route down to fuchsia with a king team?
ye the guy with his Regal pokemon
Oh, but I think he had Kingler/
Nidoking/queen fusions
hmm Kingler/Seaking
Mr.Mime/Nidoking
and Kingler/Nidoqueen
thats what he had i think
Kingking, Mr.King and Kingqueen
This has probably already been suggested/decided on but; NPCs that trade for the Alola forms.
Not feasible to add any more pokémon to the game at this time
There aren't any fusions for the alolan forms, and we cant really add them either
So not gonna happen
Understood.
On a more practical note; adding the "use" option when selecting the "Item" option on a pokemon. Just a quality of life option so you can go from pokemon to potion, evolution stone, DNA Splicer, etc. I dunno about the actual processes of installing features like that though so sorry if it sounds too complicated. It's a non issue anyway.
Also, The base 80 power version of Leech Life. PLS.
ye that would be good
update all the moves to their power levels from current games
Knock off and stuff like that are quite sad in IF
Except no Sucker Punch nerf
Pls do include the sucker punchu nerf PLSSS
Get rid of Bidoof and put in Riolu, something actually interesting to maybe get from the Breeders
Although I have seen like 0 lucario mons
Nobody's using Luke because he's stuck in the postgame, and even despite that there's been a few people doing custom sprites for some fusions of his
Put a slow mode on this channel, maybe on bug-reports channels too. Go for the minute boi
=> So we keep it relevant to actual suggestions/bugs instead of chatter around them. People can always edit their message
A hard mode where the level of our mons would be limited depending on the number of badges badges we have
=> It would increase the difficulty and encourage people to use more fusions/pokemons, which is kinda the point of the game. Also difficulty is important cuz it gives meaning to your choices.
Go back to when all fusions had the same xp curve. It can be a slower xp curve than the previous one
=> I juste hate this feature in general 😄 Some mons xp slowly and aren't even that strong. Some xp super fast and are super strong.
Make movepool of pokemons based on the same Gen
=> For obvious reasons. If I have to go trough all the pokemons and put their moves in an excel file I'll do it.
(if u wanna answer to this plz do it in #general)
Some kind of balancing for the randomized items mode. I just wish that berries had a somewhat decreased chance of appearing, since there are so many, most items tend to be useless berries.
Seeing as the items that were normally berries can only be randomized Into berries, then the same could be applied to items that were normally normal items as well
Can we have a section that lists our Pokémon’s IV’s and EV’s
The scientist in the cave who fights you over the two fossils and lets you take one should later offer a trade, Kabuto for Omanyte or vice-versa :p
You'll get the other one already in an hotel quest If I recall corectly
Someone else said there was one in cinnabar, but that much, at least, isn't true.
Make Zapmolcuno obtainable. Maybe it could require a special item or we could fuse the 3rd bird to a fusion of the other 2.
It's meant as a boss pokemon, it would be way too OP
maybe endgame
It could be postgame. Maybe it could require giving away one of each legendary bird therefore you couldn't just get a full team of em since it wouldn't have your Tranier ID or it could be a reward for getting all 315.
The trades trainers offer should be updated to relfect their actual teams in randomisers.
Turn Rain Dance and Sunny Day in to field moves? Sunny Day stops rain, Rain Dance summons it.
give ruch access to talk in #fusion-faq so he doesn't need to keep answering questions
I don't need that lol
Tbh most people don't read the FAQ anyway
Which is a whole ‘nother issue btw
Move tutors that teach event and spinoff game excusive moves to pokemon?
That would have to be pretty specifically tailored to each pokémon. Easier to just add a pokémon's event exclusive moves to its levelup moveset or egg moves
Ooo that's better
The option to randomize move tutors would be kinda cool
I know that new pokemon wont be added for a while but I really want rotom.
Remove bidoof, put sylveon in its place (seeing as the japeal site has sylveon fusions now, and I've heard people be disappointed that sylveon isnt in the game...also bidoof is really weak so pretty useless)
bidoof is our god
the meaning of the universe
I'd be up for adding and removing some mons, but if it's done too much it might just seem like a random collection of mons, instead of gen 1, 2 and fan favourites, and it might seem to chaotic
I cannot rip the sprites from the new site unfortunately.
Smogon has a sprite collection for gen 6 & 7 mons that are free to use, so that gets you gen 6 & 7 pokemon sprites
Here's links to the threads for the gen 6 & 7 sprite projects, if you want them.
https://www.smogon.com/forums/threads/xy-sprite-project-read-1st-post-release-v1-1-on-post-3240.3486712/
https://www.smogon.com/forums/threads/sun-moon-sprite-project.3577711/
See release v1.1 here
Before posting read this and check the google docs chart: https://docs.google.com/spreadsheet/ccc?key=0Akua_VvFyhZTdEYzTS1UUUgzU19ITllWM0V4MXFpalE&usp=sharing
Here is an updated list...
This is a thread for the creation of BW style sprites for the gen 7 Pokemon. They will be used on Pokemon Showdown when players choose the BW Sprite option. You may use these sprites as long as you credit either the spriter or this project itself.
To contribute, you must sen...
we still need the sprites for the fusions then..and thats the difficult part
i'm no discord expert, but i vaguely remember joining a server once and having to wait 30min (or 1 hour?) before i could post or read any other channels except for the FAQ.. you might see what i'm suggesting here.
😦
And until those 10 minutes, all you see is the #fusion-faq channel and a channel with only " READ THE FAQ ! READ THE FAQ ! READ THE FAQ ... " indefinitly
I think I saw a server once where there was just a code in the middle of the FAQ that you had to type somewhere to be allowed to type in channels, that way you wouldn't have to wait
I cannot rip the sprites from the new site unfortunately.
Technical or moral issue ?
Technical
Aegide, Frogman did have the permission to use their sprites in the past. (not quite sure it still apply to nex material but I would assume so).
So yeah, technical seem to be the one. There is no easy way (as far as we know) tu scrap all the images with a bot. Because the way it is now seem to "need" someone (or something) to actually interact with the thing. (in a previous version you could just put the pokedex number of the 2 half in the url. now you can't) and the final product seem to be fuse live (meaning the image isn't save on a server with a never changing url. so you cannot just try to figure url either)
Pretty much what Ruchunteur said. Although, since the fusing itself is done client side from what I can see, it would probably be possible to edit the javascript to get it to loop through the list and save the sprites as pictures locally (or use them directly in the game somehow) instead of displaying them on the website. I tried digging through the code, but it's pretty hard to follow so I didn't get anywhere. But I might take another crack at it eventually.
The problem that would occur is that either you have to redownload all of the sprites to make sure that they are all in the new style, or accept that only sylveon fusions have the extra detail parts from the updated japeal site..
Yeah, but tbh I would gladly replace all the sprites by the new ones if I could download them. If I can do it for one Pokemon, then it's not that much harder to do it for all of them. It just takes longer waiting for the script to do its thing .
Not sure i can do that but i'd like to try also.
Thanks for the detailled answers
I'll gladly accept any help I can get for this hahah. I do know that the site uses a get request like this https://japeal.com/wordpress/wp-content/themes/total/PKM/callAll2.php?type=all&p1id=210&p2id=527 to get the information about where to position each parts of the sprites and all the rest is done in browser so you could maybe use that as a starting point.
script that screenshots website then crops it and automatically remove the colors of the website (except the pokémon)?
That's close to what I did with the old site. The main problem now is that you'd have to navigate the site quite a bit to get to each fusion (select each Pokemon, click the fuse button, wait for the animation) and that's not easy to automate.
hmm
maybe you could remove the animation from the source?
I used selenium to automate "browser clicking" when working on another web project (showdown IA). Perhaps that can help you
Can we have Alolan Forms?
No, seeing as the game is already pretty much at its max, pokemon amount wise..so adding all of those would be close to impossible
I suggest we put an emot " read the faq "
Ok i made some progress. But the complex part will be "how to resume progress if the script was interrupted".
It seems like the sprites have naturally some background light. It could be possible but hard to remove with the shadow (they also provide).
The links of the pictures are base64 and therefore enormous. I need to paste them somewhere to share them
example sprite url : https://justpaste.it/sprite
eample sprite shadow url : https://justpaste.it/shadow_sprite
from selenium import webdriver
import time
import os
import urllib.request
def fusion(driver, timer):
element = driver.find_element_by_id("fbutton")
element.click()
time.sleep(timer)
def close_ad(driver):
elements = driver.find_elements_by_id("xcloseBtn")
elements[3].click()
# They have multiple web elements with the same ID, insane
def get_fusion(driver):
element = driver.find_element_by_id("image")
src = element.get_attribute('src')
# Naming convention
head_name = driver.find_element_by_id("Ltxt").text
body_name = driver.find_element_by_id("Rtxt").text
fusion_name = head_name + "_" + body_name + ".png"
# https://github.com/PokeAPI/pokebase
# For the translation : 'poke name' => 'poke ID'
dir_path = os.path.dirname(os.path.realpath(__file__))
fusion_folder = "japealFusions"
path = os.path.join(dir_path, fusion_folder + "/" + fusion_name)
data = urllib.request.urlretrieve(src,path)
return fusion_name
def randomize(driver):
element = driver.find_element_by_id("myButtonLR")
element.click()
driver = webdriver.Firefox()
url = "https://japeal.com/pkm/"
driver.get(url)
fusion_amount = 10
# Download <fusion_amount> random sprites
fusion(driver, 6)
close_ad(driver)
fusion_name = get_fusion(driver)
print(str(1) + " : " + fusion_name)
randomize(driver)
for f in range(2, fusion_amount + 1 ):
fusion(driver, 5)
fusion_name = get_fusion(driver)
print(str(f) + " : " + fusion_name)
randomize(driver)
driver.close()
Now you can get as much japeal sprites as you want.
Holy shit this is fantastic! I'm definitely going to try it out as soon as I can
😮
does this mean what I think it means, shinies(maybe), and more pokemon?
Shinies, idk (maybe).
More pokemon, yes that's possible if the game can handle it.
@rough gull if you cant get it to work. I can generate a basic sample (all the Pokémons possible or less with the same head or body) with better names (national dex number or custom national dex number) so you can test what you want.
true, he'd probably only add pokemon from gen 3-5 due to them having official sprites
Japeal also have gen6 sprites. If they really want to use that gen, It works well.
And on the website you can see that gen7 sprites are coming soon.
I mean base sprite
Yes me too. There are unoffical base sprites for gen6.
and he'd have to get permmisions for those and that'd likely be too much trouble for it
He had the permission for all the other sprite before though. So I highly doubt the guys and girls at japeal will suddenly say "we revoke your permission for the latest sprites"
This script is interesting. but you randomize everytime ? won't you get multiple time the same sprite with that ? I like how you organized your code though. It is really easy to follow (well, if you came across selenium in the past at least). Maybe add a function to change the select value ? (so you can actually chose the pokemon in you want) Depending if their function that generate the function is run on change value or not it could work
Actually, it doesn't seem like it's a real select. you'll add to click on the pokemon to show the list. change the value of the input. Then click on the first item of the list (which is a div apparently) . easyer said that done
Thanks ! 
but you randomize everytime ? won't you get multiple time the same sprite with that ?
You're right, in that way it's possible to get duplicates.
But if i did an organized iteration (721 poke heads * 721 poke bodies) . Considering that each poke takes 5 seconds to be created.
721 * 721 * 5 = 2599205 sec = 43320 min = 722 hours
And if the iteration was interrupted, the user would have to start all over again. And getting again the initial duplicates.
Soon i'll create a version where the "initial head ID" and "initial body ID" can be specified to resume progress.
For now it's just random as a proof of concept.
@brazen swan I suggest you don't block the #588094801371725835 channel. people start to spoil in #general because they apparently can't talk in #588094801371725835
in the title screen , customs sprites don't work . I saw a fusion i made but with the auto generator .
Perhaps for the post game you could add a place where you fight previous league-beaters. but only the second time they beat it.
It'd be fun to see the different teams used to beat the league the second time.
Ok it's done.
Pokemon japeal fusions can now be generated in three different ways.
- Iteration (from A to B, progress can be resumed)
- Fusion list (specified fusions to build)
- Pokemon list (specified pokemons to mix)
I also added a custom dex for the translations of custom ID (like bidoof, etc)
If you want to try it, don't forget to use python3 and selenium. Idle3 as an IDE can help also.
If you don't have time to generate them or can't execute the program, i can run it myself and send the results in a google drive folder.
Oh my god this is amazing, you're the best! I managed to tweak it a bit to remove the blue outlines and I'll leave it running for a while, but so far it seems to be working perfectly. I can't thank you enough for this!
Ok so it does crash after a while when the website takes too long to load, but I got the first 3 Pokemon done so far. I'll leave it running for the night and hope the website doesn't crash!
Fantastic work Aegide, you rocks
What is the nature of the crash ?If it's an exeption maybe you can move the initialisation part of the driver in a separate function, add a try and except around the part that can fail, and if you you catch the exception, resume where you where few second later (you might need to initialise the driver again, that's why I talk about maybe moving it in a function).
As long as you keep track on where you were at you might be able to resume progress.
Bonus point, if resuming isn't possible, write a json file with the last configuration you use (so.. if it's the iteration, write where you were at from A, and write the target B. If it was a fusion list only write down the fusions that wern't down yet. If if was a pokemon list then write down the incomplete ones). And when you re run your python script you check if there is such a config file and load it.
(I know, non of this is actually nescessary. I just like that kind of silly projects / scripts and it's fun to think about the possibilities)
Thanks you two ! 
I managed to tweak it a bit to remove the blue outlines
Yeah that part was annoying, i'm glad you found a way to remove that.
Ok so it does crash after a while
Arf i expected that to happen if the website lag.
I just like that kind of silly projects / scripts and it's fun to think about the possibilities
Me too xD. That's why i was so motivated to help with it.
If the crashes are too annoying, i'll try to have "progress resume itself automatically".
I can already see a way to do Ruchunteur's idea (catch the exception, resume where you where few second late).
Minor point, but if shinies have been removed, perhaps so too should the Glitter Ball?
Give permission to post in #sprite-gallery to spriters only 😄
I thought that was already the case tbh. done
so you need to request the role to post more?
Seemingly so, or receive it after proving you can sprite within the right size and w/o half pixels i'd assume
Mr. Queen, Mr. Gey, Dragqueen, and Gengar/Shellder, new trainer. :)
(Squints at you)
LGBT people aren't a joke or trope to play off of.
:/
they most certainly are, anything can be joked about
i suggest we add Basculin
Well I am not. I've spent enough of my life being joked about. The game does not need a cover-all trainer making pun jokes about LGBT features.
People can make those teams on their own.
Otherwise it's forced at best and disrespectful at worst.
Opinions, lots of people enjoy those kinds of jokes, please move this conversation to general, if you want to continue it
#game-suggestions there isn't a slow mode for nothing. we dont care
Then you keep yours. My opinion is im blocking you Universez. And leaving this chat. They're right. This isn't the place.
Scizor and onix evolve at level 40 while holding metal coat
hmm why the metal coat, they already evolve at 40 without any need for items
they use it in the main games and porygon uses both items that it needs 
Fair enough
Actually the scyther one is a great idea cuz some people may want to keep it unevolved without having to spam X after each level up
make self fused pokemon stronger
Debatable, could make it weaker. Also it's impossible to obtain self fused pokemon from what I heard without a randomizer. Would be cool if you could self fuse pokemon for custom sprites just for your own pokemon though and not have opponent trainers steal your special pokemon.
make self fusions possible plz
...who says I was being insulting? Maybe the NPC could say he's very prideful of his team. 😃
I’m not sure if I’m being dumb but it doesn’t seem possible to evolve happiny in the game
@hollow tartan Did you try leveling it up, while it is holding an oval stone, during daytime
It says the oval stone isn’t in the normal game and idk where it is if it’s been added in the infinite fusions version
you can steal them from happinies
@full pasture How do I do that?
find a wild happiny?
@hollow tartan learn a move called thief on a pokemon, find a happiny, use the move thief (make sure you have no item equipped) and if you don't get one, kill/run from the happiny and try again
@full pasture But where would I find a wild happiny?
Could we get an NPC that wants a Gyarados in exchange for a dratini/magikarp (or reverse maybe?) at LV1? Maybe put this guy after Lt. Surge? Would be useful, funny, and probably not super broken at that point in the game because of the sewers level spike.
Also, would editing Messages.dat to weed out NPC speech errors and bad info affect text in the game, or break things? Could do some proofreading on that, but would it be useful?
I suggest putting the slow mode to 7 days
I would also be willing to proofread. It's a good chance for my instinctive love of pointing out problems to be productive for once.
Add an audioless mode for pokemon infinite fusion its showing up an error because im lacking an audio card
Pokemon who needed items and to be traded in the actual games should be like Happiny instead of what they are now, perhaps?
What I mean is that Happiny needs to just hold an Oval Stone and level up during the day to be a Chansey. We should have, for example, Seadra, to be similar--to evolve it by making it level up holding a Dragon Scale.
Alot of evolutions like that are already changed
well i actually prefer the current way of evolution on the mons, just having a level evolutions is better for most of them (except for scyther)
I know people have problems with Scyther and maybe it would change to benefit them this way, and I'm just saying to do it with all of them. It might make it harder or easier for people to now obtain those mons thanks to luck.
I'm mostly just suggest it though because... I just got a Dragon Scale. Which was used to make Seadra a Kingdra. So it's pretty much useless now, unless you wanted cash. But you can't do it with ALL evo items. Most of them sell for 1050, but Deep Sea items and King's Rock(used for Camperl(I don't think it's in the game though so doesn't matter for them that much at the mo) and Politoed/Slowking respectively) are sold for less and thus are just... There if you want your Camperl to have either double spdef or spatk or a chance to flinch. The evolution items are pretty much useless and doing this restores the full use of what they were before--being used to evolve pokemon when they needed to, over just making a quick buck.
At least that's my opinion.
well the evolution items are normally unavaliable in non-random mode, only way to get electalizer, magmarizer, metal coat etc. is through item randomizer
That changes it a bit. Horsea can still end up holding them though, apparently? Is that a part of the randomizer or intended?
no held items are unchanged so the mons can still hold their stuff but thats just a few mons, like horsea you mentioned and happiny etc. there is no point in removing held items (even if they are not used anymore you can still sell them) so you can think of it as a little extra cash along with the capture
I figured it just woulda been more than just having some cash is what I'm saying. Because... Now it's only there for the cash. Not that it's a BAD thing, just in the other games it's for evolving or cash once you got what you wanted. Again, just my way of thinking about it.
well ye cant fault that logic, but i still prefer not using the items because it just saves you some extra trouble and its overall simpler
I also don't see why it can't happen if you want Scyther to be not as simple to evolve. Yes, it's a hassle currently to keep Scyther Scyther, and would change if you followed my suggestion for all mons but only applied it to this Pokemon, but... Just that one? Because you don't want to press B a bunch of times or force it to have an everstone? I don't think it makes much sense to want to have it applied to one pokemon and just... Not the rest. All of them or none of them.
@cedar atlas : Not true. Definitely caught a Magmar with a Magmarizer in a normal run. (Would post pic but not at home.)
what is not true? the mon does not use the magmarizer to evolve, oh i got it you mean that the magmarizer is avaliable in the normal game
make the thirsty guard that blocks saffron want you to bring him gamer girl bath water instead
no dont
the thirsty guard is not in IF
Make self-fusion able to use custom sprites. I had to name my Bulbasaur/Bulbasaur 1.png instead of 1.1.png for the game to use it.
Be able to take a break from the trainer house let's say you are at uh 500 and you wanna take a break and come back later and then it saves your progress (i don't know if this would affect the game at all, if so i wouldn't mind)
I have an idea. If there is no custom, use regular sprite of the mon. But if ther is a custom, for exemple 1.1, using the custom instead would be cool
I'm pretty sure it's not hard to do ^^'
you mean an exception for the same mon fusions ?
yeah :D
Can we get a chat just for self fusions? Or is that too much?
Giving the spriter role a colour, they deserve a cool colour for their hard work and making such cool fusion
but then we'll fight over which color
make it black
Make a poll for the color, that way it is easy to pick
https://gyazo.com/4dd4b41e2b9d0a946b8a39de67ff0f14
i was just taking a gif of this since the effect fit
but it will be up to a vote
I have a suggestion which'll proabaly be ignored but https://japeal.com/pkm/ updated so now there is access to gen 6 and gen 7 is patreon locked. so all avaible pokemon added
A script or something has been made by someone in the discord that allows Schrroms to get the updated sprites, so those might be added in a next update...the only problem with adding neew mons is that the game is already pretty much at its limit, pokemon wise...so new mons are highly unlikely
kk
well the fusions there supposedly look more fusiony now? so the sprites with no custom could be changed
I'm actually in the process of getting the sprites. I've been running the scirpt for the past few days now. It should be done eventually 😅
did you mean: Hype as fuck
lol
I haven't asked them for permission to use the new sprites yet though, so there's still a chance it won't work out. But they were quite happy to let me use the sprites from the previous generator so I don't see why they wouldn't this time.
Also Schrroms (hate to ask this and seem like a beggar) but any hopes on adding sylveon?
Any hopes on adding Cubchoo ?
neat!...also one more suggestion: adding some fairy moves in the movepool of the toge-line, and play rough for azumarill?
I'm pretty sure azumarill can learn play rough by tm, no?
but tm is tedious
add tropius instead sylveon please
probably not going to add tropius or cubchoo, sorry
Adding Sylveon makes more sense than either of those, bc eeveelution
why is there a cooldown here? its just tedious
but I am thinking of adding a couple extra pokemon next update.
Bibarel
A COUPLE?! MORE THAN ONE?!
yes please
tropius and rotom 👀
More rare types please, dragon, fairy, ghost, steel, dark
Since you can't check each fusion, could the new fusion sprites have a separate Battlers download? I don't remember the exact fusion, but I found an X/Girafarig that had one of it's hoof replacement floating below the sprite. I'm sure that's not the only fusion that has problems in the new system.
The Pokemon number limitation.. just an essentials issue, or the shear amount of work involved?
its the size i think
File sizes
and probably RPGMaker XP Limits (why the hell is there a 2m cooldown im trying to type) >:(
ye that cooldown sucks
Rpg maker limit. It's not a "hard" limit per se, but basically the more Pokemon there are the slower the game runs
i agree to add rotom but theres also altaria/swablu (please oh great frogman) or maybe garitina or honedge (and its evos)
I think everyone has pokemon they'd love to see but unless everyone wants it, it's unlikely it will appear
Honestly, I feel this game has already outdone itself... I could argue for adding Sylveon, and maaaaybe Rotom, but I think that's totally fine and more important that the game runs well.
Rotom would be cool considering the forms
_ _
Suggestion: UnCool emote (Unown/Tentacool)
We probably won't get the forms
We could always fuse it with something that matches it's form's typing and use the for sprite.
A Suggestion in the form of a question because I would bet money it's already happening: With the big next update (Either with the new pokemons, or the new visuals that are potentially coming, or even just the last four gyms for postgame) will all the custom sprites be shoved into the base download instead of them individually having to be added in through packs?
So, everyone's making their suggestions for new Pokémon huh 
I'll suggest the ones I suggested in that Google poll for 4.1, which were mostly based around unique types+stats combinations and/or abilities that are not in IF
Cottonee: a fast fairy and prankster 👀
Drillbur: 'fast', hard hitting steel type + 2 sandstorm related abilities
Zorua: Illusion
Golett: physical ghost type and iron fist
Deino: special dark type and still decent for a special dragon (also, the sprite potential dude)
Joltik: special bug type and another compound eyes user
Then my suggestion is to add more weather mons. Atm the only one is Tyranitar.
My suggestion for ^that^ would be
adding drought as second ability to the vulpix line
replacing damp on politoed with drizzle
Klefkey would probably have some interesting type fusions and a neat moveset, but I honestly think the current pool is fine for Pokemon given the limitations.
Bisharp would achieve the same goal.
Can we make it so that the Celadon game corner removes TM's you already have? Hyper Beam can still be bought with coins after purchasing it at the mall, even lets you buy it multiple times.
actually yeah add bisharp
add skitty because reasons and ||the ability to use zapmoltcuno but for balancing reasons when you get it, its primary type is either ice electric or fire and i guess its stats could be nerfed when you have it||
I think it would be okay to put in (TimeKZ's suggestion) as the final, final post-game mon (including after updates/additions), ||but you'd have to be able to create a custom type and just have it be that plus flying, where the custom type has the combined traits of ice/fire/electric.|| not sure if that's possible, but I think it would make a neat reward for this very unique game. 😃
The type would be
x4 weak : Groud Rock
x2 weak : Fighting Water
Neutral : Normal Poison Ghost Fire Psychic Dragon Dark
x2 resist : Flying Bug Grass Electric Fairy
x4 resist : Ice
The type already exist within the game though. it is ||"FLYING" + "ICE/ELECTRIC/FIRE". well, I mean the legendary bird jave that type||. I did check with RPG Maker and give myself this pokemon one time (at of curiosity)
x8 weak to rock Oo
not sure if the resistances have been tweaks beyond what you would expect. I believe Stanley had a file showing them though (he got it at one point by playing around with debug mode)
I thought so Ruch... just wasnt sure if it's possible to make it accessible to a party pokemon.
It is if you get the debug mode (which you get by showing having the 315 base pokemon register as catch in your pokedex and then show it to a specific npc in celadon) (well actually I had to cheat a bit more than that to check it out and actually change a map)
Yeah, kinda working on doing that... on that note, could we maybe have that NPC give hints about where to find missing pokemon? :) (Maybe post-e4 only?)
In the google drive, rename the "Custom Sprites" folder containing the numerated folders into "Custom Battlers". Cuz there is 2 folders named "Custom Sprites" and it's a bit confusing.
And well ... If you change "sprites" to "battlers" there, I guess also change "normal sprites" and "sprite packs". That makes me think that we don't have a "normal icons" nor a "icon packs" folder
Icons are sprites too, so I guess icons folder should be inside the big "Custom Sprites" folder. Then inside it we make the difference between Icons and Battlers.
P.S : Anyone can give themselves edit rights to the Custom Icons folder
When i first started spriting, i spent a lot of time figuring "how to upload my custom sprites". Only to realize that i have to drop them in #sprite-gallery.
I was mislead by the drive docs, they are kinda confusing.
The Sprite Gallery and Sprite Packs are a more recent invention that allows me to collect sprites as they're made, so people can have a complete up-to-date collection. You can still upload sprites to the drive, they just won't end up in a sprite pack until I happen to notice them.
Switch Celebi's typing. Grass for the face/color. Psychic for the body.
I don't know if it's been suggested before, but something somewhere (possibly by the time when you open the menu?) stating the phase of day (ie. Morning/Day/Night) would be helpful. The transition from Morning to Day isn't the most obvious, and it would be a nice clue to people picking up the game fresh that "Morning" is a distinct time slot for encounters.
I think it's using the pokemon essential time system which is this:
Time periods
There are several periods of time in a day:
Morning - 6:00am to 11:59am
Afternoon - 12noon to 7:59pm
Evening - 5:00pm to 7:59pm
Day - 6:00am to 7:59pm
Night - 8:00pm to 5:59am
Note that several of these time periods overlap each other.
This page describes the time system in Pokémon Essentials, and what is affected by it. The in-game time depends on the system clock of the computer running the game, and is the same as it.
the game doesn't follow the system clock, that's for sure
I can't see this game getting updated much further. It may be time to make a new game with many of the features that won't be added to this one. Of course, if no one wants to work on it, then that's okay.
revert EXP All nerf plox @_@
keep the nerf but not make it as bad
I think a better solution would be like... make another quest that rewards an EXP share.
give kecleon protean as a second ability
To the developers, would you please consider using 7zip instead of WinRar as well as compressing and posting a downloadable copy of your game as a .zip or .7z as an alternative to the .rar. I have had to leave my computer on for 4 days straight as it is still unpacking the .rar and it's not even 50% done with the file operation because it's such an inefficient archive to decompress on a non-Windows system.
7-Zip is free software with open source. You can use 7-Zip on any computer, including a computer in a commercial organization. You don't need to register or pay for 7-Zip. 7-Zip works in Windows 10 / 8 / 7 / Vista / XP / 2016 / 2012 / 2008 / 2003 / 2000 / NT and there is a command line version of 7-Zip for Linux/Posix.
Could a special post-game item be implemented to allow you to refuse Zapmolcuno as a special fusion for your party?
@heavy pagoda I am not the developer but... You do realise that 7-zip is perfectly capable of reading .rar archive right ? You don't need winrar to open a .rar
There is event command line to extract .rar on linux by the way...
basically, his computer is bad so hes whining to us. how fun and realistic
@slow crescent I am already using unrar to unpack the game on Linux currently.
I have had to leave my computer on for 4 days straight as it is still unpacking the .rar and it's not even 50% done with the file operation.
@full pasture My computer is a moderately high specced gaming computer. Everything else runs swiftly, but this unpacking operation is insanely slow.
....and the file operation just died.
secondary reminder: this game has 95 thousand pokemon. Of course it will take a while.
Maybe don't use Linux
Sounds like your computer has some other issue going on... my computer is a 7-year-old pile of crap made of broken computer's salvaged parts and I managed to install it in 45 minutes.
ye i extracted in 5 minutes so idk what to say, but maybe 7-zip will make it better
I downloaded 7 zip, ill archive the game and give you a link to download it as a .7z file
@cedar atlas Thank you, the less hoops to jump through to install the game, the better. I was hoping that once I extracted the game files, I could make a instruction manual for getting the game working on Linux to post in the group for anyone else to use.
overall the game im archiving is already fully patched and has the custom sprite packs up to pack 25 i think
@cedar atlas Could you please extract the game and patch separately and repackage them each as .7z? Also, we should take this conversation to #general
not sure where i should put this comment so thought i'd put it here, someone put 248.149 in one of the sprite packs as a blank word document
or at least one of the 248.149 files is a word document
which sprite pack? can you give any more information on this?
I probably doesn't matter though, a blank word document wont be a .png file (except if it has been renamed .png. But then it would you have identify as a word document right ?)
high iq word spriting
I suggest changing the icon of the Game.exe 😄
https://gyazo.com/ed6f1488ea5ff4a1513f19b152fa2ab3 im just putting this here since i've seen people mention an emote for this from time to time in #spriting-discussion
I suggest changing the DNA icon because it is full of half pixels and it is a sin to Arceus. Also that would be neat to have a default icon for fusion that changes colour depending on the type(s) of the fusion.
imma post this non-sinful dna icon here, feel free to give it a try if you think it's a good idea
dna icon
I have an arceus gengar fusion that I totally love, but after some testing, I've noticed that multitype doesn't work on it. Any chance we can get support to allow multitype work on fusions?
Unless of course, it only replaces normal type, and that would explain why I didn't catch it working.
make. cloyster. give. skillling. as. body.
If new mons are added, Cacturne(or Darkrai) should be added. We need a Dark-type body with a better Sp Atk.
^ deino line 👏 (oh body, nvm)
@topaz dew I think you have to change arceus type before fusing to pass the type
Plusle 👏 Minun 👏
Please no
Please👏No👏
Maybe Carbink could be added for a physically defensive fairy type?
Add the "Solo run" variant challenge mode and let us pick the head/body combo, or just a pure pokemon, from any first stage non-legendaries.
(Would be a good idea to let it be turned off at almost any point like the other challenge options, with glasses dude upstairs in most pokecenters, just in case..)
By the time you get to celadon to buy coffee you've already had access to fresh water and super potions for quite some time, so coffee needs a buff. I think it should still heal 50 hp, but also sleep, because it's coffee.
that's a neat idea. it could buff speed too.
+2 speed for 2 turne and then the cofee as no effect anymore so you end up at -2 instead =p (joke)
The Latte buffs speed by +2 already
Is there a way to get Zapmolcuno yourself? I feel like it'd be neat if you could get one through some sidequest.
nope, maybe in a future update
not without cheating
Have the Fused icon sprites be a different colour for each type combo (e.g. an electric/ground's icon would be yellow and brown) I think it could help with figuring out what pokemon you have in your party & each of their icons being at least somewhat unique
this is my party with an implimentation of my idea, where the head's type becomes the lower part, and the body's type becomes the upper one. Types are as follows:
Fight/Fight | Water/Steel
Dark/Ice | Ghost/Electric
Fairy/Ground | Fire/Flying
hmm interesting, it will take alot of time to add those sprites to the proper mons tho
sprite icons based on the type of the pokemon I see
Yeah, manually it would be difficult
But if it was just iconDNAfireflying for a fire/flying pokemon and applied as default like the DNA icon is now (I don't know if it's possible) there would only be 171 sprites to add
i like a lot your idea, but i think the main type should be "over" the secondary type.
I think it's more visually obvious that way to determine what is what.
Fire + Flying :
I have a suggestion (of course if possible): what do you think about adding the double cry of pokemon fused? that is, the pokemon emits the sound of the two pokemon that compose it (dragon ball style ahah)
i was thinking of doing it but holy shit 171 sprites?
japeal does that. But for this to work here either it's generated (so it have to be coded) or either it's already generated (so it's more files for an heaver game)
A single one of these icons is 1.85KB so I don't think 316 kilobytes added to the game is too much of an issue.
"sound of the two pokemon" :
original sound size * amount of pokemons
+
fusion sound size * ( ( amount of pokemons ^2 - amount of pokemons ) / 2 )
Adding all these "double cry of pokemon fused" could be an issue. @plain gate
If you're speaking about the DNA icons, yes they are light and not an issue.
But i wasn't talking about that before.
I was kinda replying to PlayerName, and at the same time I must've assumed you were also responding to them because of he simmilar context.
for the double sound: yes, I guess it's a bit difficult, in fact it was just an idea that came to my mind at the time
Maybe the game could just call two cries at the same time, that way you only need 315 cries
DNA icon suggestion : low effort for high utility
Sound fusion suggestion : high effort for low utility
What does high utility mean ? Either way both suggestion are like nice little addition but arn't very usefull. You'll need to remember every single color types to make the icon thing usefull. And you'll need to care about sound to make the sound thing enjoyable.
Beside, you can already do the icon thing just by making the icon and naming it the name of the fusion
i mean that it's very useful to instantly know the type of a fused pokemon, especially when you have a box full of fusions.
And of course that the sound suggestion would be a nice addition, but not as useful.
But that's not that easy. you'll have to know which green is grass or bug. which purple is psychic or ghost etc etc... not all types have unique color. Some are shade of the same color. You will most likely not know instantly which type it is
that just depends of what colours are picked to represent the type but i can see your point
there is 18 types though. Which is more than "basic" color. You gotta have some shade of the same color in there for sure
Bulbapedia uses a colour chart that does a good job at differentiating every type.
So if you add some shades with it, it's even better.
Still, the icon thingy would be a nice addition. You can already do it though. just make all the icon combinaison possible. get the list of all 90000+ fusion and just copy the right icon the the right species name and put it in the icon folder. easy
For my mockup I took the type colours straight from the game's files. there's three shades for each type (except for ground and flying which have a two colours with the bottom colour being reused from rock and normal respectively)
*the type icons I used arren't actually the ones used in game so I Think they're just included with essentials but the icons that are used do have three shades as well, so my point still stands
Funny enough. I can't tell the difference between the colors of Bug, Rock, Grass, and Fire on the Bulbapedia chart.
^ that just means we need a colourblind version as well, easy enough 
Fire : Orange
Fighting : Dark red
Grass : Light green
Bug : Dark/desaturated green
Rock : dark brown
Ground : light brown yellowish
But yes i see what you mean
the icons suggestion become useless if we create all icons 😉
It's a good temporary solution until we have all the icons 
a channel for progress on making a sprite, and questions about what do add to the sprite "sprite-progress" or something like that.
#spriting-discussion exists
oh, right. it just doesnt feel like one.
Do you even lift? emote
This is a in game suggestion
In the settings menu adding a way to lower sound
Because idk if it's just me but I normally turn some of the games sound down just so I can have my music on the background
This would even block the music for those who like it
Those who like it keep it
The other who want some other music can just turn it down or something
use the volume mixer to lower the volume of the game only
Or press F1 and turn of the sounds there
Would you mind terribly if I reorganized the google drive's Custom Battlers from 315 individual folders to 63 folders named 1-5, 6-10, etc.
just to shrink it down so it all fits on a screen
hmm well, I dont mind but thats because i dont rly look at those folders anymore
You could even make it one folder if you feel like it. since we have the "custom battlers" folder we have no need for multiple folder anyway
i dont mind since i download from the 200 per pack one ¯_(ツ)_/¯
If they arent already in, put the sprites from the subreddit into the sprite packs
Make Lt.Surge's Volty slower
Quilfish emote
make the game go to sinnoh if that's to much to ask
i mean we already have johto in the makes so thats probably too much to ask. Oofun theres a 3d mode in the overworld menu screen
Make the game 3d
Waves's vote of approval on color coded DNA
Make Lt.Surge's Volty faster
Volty?
Make volty slower
give volty 999 speed, you just gotta
He is too strong, He needs to be stopped
more secret areas to put those other pesky late-game pokemon in?
Make it able to fuse 2 poliwhirls together
you can. you just need to fuse a Poliwhirl with a Poliwag and evolve the Poliwag half. 🤦
idk why you would want that tbh
Well I meant more all mons so I can get those sick looking fusions like 6.6 or 3.3 also the old gen 1 sprites
wanting self-fusions of mons that you can actually in reality are able to fuse(like 6.6, 3.3 or Poliwhril/Poliwhirl) is not the same thing as wanting fusions that can't be obtained(like Arceus/Arceus, Pinsir/Pinsir or some other mons that can't evolve). Not to mention this was already suggested.
let us buy multiple items at once from the Trainer, if we have enough TP.
buying a Rare Candy at a time is so tedious
im gonna ring up 100 gums 1 at a time at the whal marrt
Let us leave the trainer house between rounds without losing our streak pls
no
that misses the point of the streak
and is very stupid
official pokemon battle facilities:
It doesn't miss the point of the streak if it picks up where you left. Like the main games, it would be reasonable to lock you in for seven battles, then give you your 7TP and the option of either continuing or taking a break.
If you leave, you can save the game in case you don't have multiple hours to spend, and once you finally lose you get a streak bonus of X TP
ah ok thats what he meant? i thought he wanted to leave at any time
Thanks for the stupid
Yes I meant that sort of like in the main games where you're just able to take a break without redoing the whole thing all over again
ability to choose the way you look, and gender seperate
I mean, that'd probably need to be part of a much deeper character customisation thing like Insurgence had, piplup. I would LOVE that, but the devs seem to have other priorities (which is definitely fair.).
(And considering we're at the point where they can't fit another pokemon... Means they probably have less than 500 or so sprites to work with in the engine itself. Likely enough to fit in a customisable avatar, even with three versions of most images you'd need (every option except skin colour has inventory icons, and all options need both overwold and detailed sprites. (And shirt, hair, hat and skin colour would have throw animation sprites too.)) but then the shops and changing areas need a few unique sprites themselves, etc. Right now they'd be doing all this work to implement that... aaand it might well not actually be able to actually fit into the game)
The sprites aren't as restrictive as the file containing the actual data defining all 99,000ish pokémon in the game. That's what the game chokes on. Some degree of character customization probably wouldn't be out of the question (and at least a bit of infrastructure for this purpose already exists, shown below), it just hasn't been a priority.
Beside, this isn't "#realistic_suggestion_that_have_to_be_implemented_as_soon_as_it_is_suggested" . this is #game-suggestions
Wether it will be implemented or not doesn't prevent you to suggest it 😉
Hahaha, fair enough
Character customisation would be pretty darn hype, NGL.
But I understand it's not a priority, particularly with you trying to add johto too just because.
make the intro cutscene explaining fusions skippable if you already have a saved file
the updated Pokémon cries from X and Y should be used instead of the current classic cries. then again, i know there are a number of people who prefer the classic cries over the updated ones, but i'm not one of those people
@brazen swan can you ban the people who are griefing the wiki? One edited the NPC trades and another one the quest rewards page
Isn't there a wiki admin?
Thanks for letting me know, I'll keep an eye on it
put another sprite packs in the drive called "reddit" with the reddit sprites
why? the sprite packs already have reddit sprites.
some people dont like reddit ;v
probably an unrealistic suggestion, but I really enjoyed the gym battles in insurgence on hard mode. that feature in infinite fusions would be amazing.
Can we get Pokecord on the server
Put in Gastrodon in the game, not even Shellos, Gastrodon so we can get the legendary Chonk
thats not the worst idea
So I think I heard that the Dark Pulse tutor in the Lavender Town Pokémon Tower only teaches Dark Pulse after you beat all the trainers there, or something. I would lift that restriction, since (1) nobody's going to talk to her again on their way out (unless she drops a hint that she'll teach you a move if you beat all the trainers), and (2) Shadow Ball is rough, and most of the trainers use it. It feels unfair to give the player an anti-ghost move only after they've completed the Ghost level and proven they didn't need it.
Some people miss the bar. A light during the night would make sense and make it much harder to not notice
Where did my dwebble suggestions go? Well, anyway dwebble sweep
ability to make your age your own age on the intro page
In any pkmn game i played, i was forced to be a kid. Didnt matter much.
here's my suggestion. make a reaction out of this pic and name it half-pixels
As much as I think it's a nice idea. the reaction would be too small to see the half pixels no ?
idk which size will be in the reaction but here's 3x less size
ye you cant really see the half pixels when its that small
yeah, you would need to look really close and/or know in advance that it has half pixels
I putted a reaction on your message so you can see the size of reaction
it he... the half pixel duck
emote like
but half pixels
Sprite limit reached unfortunately. No Swablu, Aaron, Trapinch, etc...
f
Sack mons no one cares for
honestly thats not a bad thing to do
well the limit is not the sprites, its the game stability
There's a hard cap on sprite capacity iirc, based on the way the game was built. I was considering fiddling though, sacking a few "lesser" mons for some of the other lines though. The hard part is deciding who stays and who goes though. I like em all
Ledybug ledian wynaut
oh you right. Ledyba line.
maybe something in the water too.
No you can get ledian onix
Sack Charizard
Then Sack Ledyba not Ledian and I'm sure no one cares about yrouge
an option for music volume
No we need Box
furret is important
i like furret line :3
Maybe we should collect mons that are not really needed and then vote them out.
Either change the 2nd blue egg or the fisherman boot gift we don't need 2 mantyke and is a really annoying thing for people who would've also wanted Bonsly or Munchlax
So I've seen the unfinished Olivine city ingame, in the case it actually gets added Jasmine needs a team right? I was bored so I made some recommendations for her team.
Magnezone/Scyther (Sturdy) @
Flash Cannon/Bug Buzz/Thunderbolt&Electro Ball/Quiver Dance
Gengar/Lucario (Levitate) @ Life Orb
Shadow Ball/Flash Cannon/Aura Sphere/Psychic
Chansey/Steelix (Serene Grace) @ Eviolite
Toxic/Soft-boiled/Roar/Stealth Rock/Sandstorm?
Metagross/Tyranitar (Sandstream) @ Smooth Rock
Meteor Mash/Crunch/Earthquake/Dragon Dance
Dragonite/Forretress (Sturdy) @ Leftovers
Dragon Tail/Stealth Rock/Roost/Tailwind?
Scizor/Shedinja (Wonderguard) @
Bullet Punch&Iron Head/Shadow Sneak&Shadow Claw/Swords Dance/X
Sandstorm, Entry Hazards and trying to squeeze in some resistances to the usual Steel Counters. Magnezone and Steelix because she uses them in regular games (or the preevolutions I guess).
Also some other random options
Scizor/Kabutops - prio moves + swordsdance
Togekiss/Forretress&Bastiodon - Fairy/Steel typing
Tentacruel/Bastiodon - toxic spikes
Ninetales&Arcanine/Bastiodon - fire immunity
Hitmonchan/Forretress - iron fist + drain punch idk
Steel/Flying - maybe aerodactyl, yanmega or Gliscor body
Give Shedinja Life orb
._.
Chill out guys, there is Slowmode for a reason. If you wanna discuss it, we can do that in general or idk
And another one, for Ecruteak city gym.
Gengar/Machamp (No Guard - Hidden Ability) @ Focus Sash
Hypnosis/Dream Eater/Hex/Dynamic Punch&Focus Blast
Chansey&Blissey/Dusclops (Pressure) @ Eviolite/Leftovers
Curse/Soft-boiled/Protect/X
Hitmonchan/Dusknoir (Iron Fist) @ Leftovers
Drain Punch/Shadow Claw/X/Bulk Up
Porygon-Z/Gengar (Adaptability - Hidden Ability) @ Life Orb
Hyper Beam/Tri-Attack/Shadow Ball/Focus Blast
Absol&Weavile/Shedinja (Wonderguard) @ Life Orb
X/X/Sucker Punch/Swords Dance
Magnezone&Togekiss/Mismagius (Serene Grace/Sturdy/Levitate) @ Life Orb
Any stab + coverage moves
Every pkmn has either Dark or Ghost Resistance/immunity, for maximum annoyance.
Regarding the Machamp and Porygon-Z fusions, I was thinking that maybe Morty could tell you about Secret Capsules after the fight, maybe also give one out after winning against him. There could be an NPC that sells you those afterwards.
No guard + Sleep move is a nasty and scary combination
le life orb shedinja has arrived [it dies] le lifeo rb shedinja has no longer arrived
add a folder like the "custom sprites" one named "backs sprites" . in which we can add backs and make it work like this : In fight your pokemon is back if the back (head.boddy) exist . if not it is front custom sprite if the custom exist . If not , it is the auto-generated sprite . no modifications for enemies pokemons that are all front .
so it's like add custom sprites , but specific , and u dont need to create 100 000 autogenerate backs but add it one by one
Easy way to fix the sprite thing being at its cap, make a infinite fusions 2 game, new pokemon, cut some old ones
We had a discussion about this on the general channel where if we get the code we can change sprites, evos and types
imagine if we get the pbs file, sheesh
A way to make it so every pokemon in the randomizer is fused with ONE Specific line (say, every pokemon has to be fused with sentret or furret.)
I don't like that idea, actually nevermind parasmon would be fun
A hall of fame for the best custom sprites (like that kind of level)
https://cdn.discordapp.com/attachments/543958354377179176/620717428032143361/47.145.png
#sprite-gallery is that hall of fame
Yes well but there are no highlight for the best, and they become less visible over time
maybe a list of each sprite that win poke challenge ?
You do realize that there is a large number of sprites that would fit the best category you mentioned, they will still get lost behind newer sprites either way
I feel like if that were a thing the sprite would have to be a 10/10/10 (idea, linework, shading) and this is a 10/9/7 (and yes it would mean that it would be incredibly rare since even the best of the best still have difficulty making that type)
I think the easiest and most effective thing to do is not bother with this
exactly
Yo chippy, can you somehow suggest to the creator to maybe release the pbs file?
The creator have access to this channel. And I think it was suggested once. long time ago
Can we get Malamar? (cuz he has contrary and he's unusually typed) [dark/psychic]
it doesn't hurt to try ¯_(ツ)_/¯
Plate Drive: Combination of Genesect's drives and arceus's plates.
It switches the type and it changes Techno Blast's type. (+boosts the type)
There are only 5 of these things.
I feel like it's needed if someone is gonna combine arceus and genesect
Probably easier to just reconfigure Genesect's Techno Blast attack to check for a drive OR a plate the user's holding.
Make us able to change the name of pallet town, and just have that name the whole time
my idea .. the fusion between two equal pokemon, maybe it could generate an awakened form, in case: dragonite / dragonite, it would come out awakened dragonite, that is as if it returned in its "original" form, I don't know if I explained the concept well
lol
or the awaken form would be a fusion of 2 pokemon, but rather than taking the form of one or the other, it's a fusion of both parts equally, which is what I wind up with some of my fusions by mistake
not an actual suggestion, it's something that the other thing made me think of
#BringBackThe4.4DNASplicer
Ah shit here we go again
The fact that I can change a Really Adamant Beedrill to a completely Modest is super broken
And what is the suggestion here?
lol
Don't let me pick the nature on super splicers
Give us an option to either A) Make the Text Unown or B) Make it the Regi Braille who agrees with me
i dont like the new fusion sprites
Then make customs to replace them
like the ones from japeal. they make certain parts too blurry...
im no artist to creathe like 95k sprites. the old sprites werent the best, but at least they all had really similar resolution
Ah actually the sprite count is like 120K now
make the fusion of a pokemon with himself ("awaken") stronger : for exemple , +5 on each base stats , so Charizard / charizard is a little stronger than charizard alone . It make more sens than just beeing exactly the same .
Have douchum be an emote
Randomized gym's should give the TM as it's type!!!!!!!!!!!!!!!!
A meme option that lets things from the other folder out, releases every meme
Fuse bruno and brock
Give hime a hariayma onix
Make the gym leaders fused with gym leaders from different regions with the same type, for example
Broark
Crasher Misty
Lt Volkner
GardenErica
Kogoxie
Sabrate and Sabrisa
Blainerry
Clayovanni
bad idea
Nah seems cool I'd love it
I wouldn't say it's a bad idea. it could be a post-game thing for a way in the futur update. (the chances are slim). I mean think about it. A vilain snatch a prototype from a DNA splicer in development, things goes wrong, he messed up and like, a bunch of strong ass pokemon fused together in an unstable way. the threat is so strong that gym leaders from all over the world are called over by the police. They end up taking care of the threat but end up fused in the process. While the scientist try to figure a way to reverse it you'll get to fight them as their fuse self. (granted, that a bit farfetch but it could be a cool thing for sure)
I just want brock and bruno to make husbando
Channel suggestion: "#main-series" for specifically main series pokemon games.
@frigid flicker YES!!!
wot with ping
Sorry for the ping Piplup
Ok if one day there is a new patch with new Pokémon, we need Cofagrigus and his 1589505956 arms
many
Theres a 0.0001% chance on a new update that includes new mons
Thats not 0
Kick the mons no one actually cares about like no one actually uses the Ledba and Wynaut line (apart from Universez but they don't count ofc)
excuse me, i use them
ludis meming on everyone else, like usual
Yes I am
Force people to use fonts or have a message saying 'You can still play the game with this font, but it looks much better with others, consider downloading the fonts '
I've even used a Wynaut/Ledyba and it was precious
I like the ledyba line plez don't remove it
Removing mons so that you could add new mons would be some sort of endless circle, as people would want other mons added after that, so you would need to remove other mons again...but then someone else want other mons as well, so even more mons would be deleted...just be happy with the selection of mons we have at the moment
Dev and Spriter Island where you fight teams of Dev's and Sprite because I want to be in the game because it sounds like a cool idea
Wouldn't there be a lot of teams
Nah there are only 41 Spriters
Well it would surely be a lengthy process to ask what pokemon abilities and moves people want right
ah i forgote the /s at the end of my statement lol. it was meant to be sarcastic
You would need to add dwebble for my team
But that would only make sens if they use pokemon for the sprite they made right ? And most sprite were overwrite at least once since most people didn't check (or rather made their own version anyway) of already made sprites. So we'll probably end up with team that doesn't use our sprite at all
They could give those mons special Id's so the sprite doesn't change
More Tri Fusions liek of the starters or other trios
Seems likea stretch but fusion moves like Hawlucha's Flying Press but it depends on it's types which leaves 17 + 16 + 15.... So on so forth. Ping me in general if you wanna discuss
I can't think of too many trio fusions to do, but the original Eeveelutions could work.
Magmortar/Electivire/Rhypherior?
Maybe, there's also Jynx/Magmar/Electabuzz
Kabutops / Aerodactyl / Omastar
Scyther / Heracross / Pinsir
Hitmontop / chan / lee
psedo legendary fusion (dragonite / tyranitar / garchomp for exemple)
Gengar / Alakazam / Machamp
Raticate / Furret / Bidoof
...
Beedrill Venomoth and Butter free
Add all gen 8 pokemons
That is alot of new sprites
You cant
I was Joking
Maybe this is lazy of me, but it would be nice to have a quick guide for where items are purchased. I frequently forget what special pokeballs are in which town.
There's a list of Poke Balls in the wiki, but it's only those invented for the game
But you're lucky, I made a list myself, but it might not be complete
i know we probably wont get anymore pokemon but I really want Rotom
Is it hard limit or a soft limit?
im not sure
Bouncy like Burgh's Honey
@solar barn Bless you, kind trainer! I'll keep that around. So there's really no way to buy more fast balls as of yet?
Not sure what Radroute means but I am pretty sure you can get Fast Balls on the Cycling Road from the vending machine
The status inflicting balls that Kurt in Azalea sells are also missing from the list. The new Frost Ball is amazing, and cheaper than the others.
Sorry, I'm German and therefore have writtenthe list partly in German
Yes, Radroute is the Cycling Road
Awards for completing certain parts of the fusion dex e.g. all of the 1.bodynumbers will get you a special bulbasaur
@brazen swan why dont you upload the Sprite packs in archives instead of folders, that way we will be able to download them alot faster from the drive, or you can just make all the packs up until now into one archive and we can download that
Describe what I need to do here. What's an archive?
im pretty sure they mean a .zip or .rar that contains all the packs
exactly
The archive is considered as 1 file, so downloading it from the Drive will be very quick
Would it really be faster ? images almost does't change size in archive usually. (because of how the compression algorithm work
One big file is usually faster than a lot of small ones
i think that's because it's easier to see what's inside a folder.
I like to use the folder as a gallery, to check what was/wasnt done.
Maybe the two could be done.
A place to download fast (zip/rar) and a place to see (folders of png)
there is a bonus +10s (i got 13s) if the folder is not compressed (because gdrive will compress before send)
Add Spheal but not Sealeo or Walrein, just Spheal
we could need some more dark or poison mons
and also if you add Spheal please add the whole line, i need them, dont listen to Ludistoise cuz he wants to destroy the World of Spheals
No more mons guys, schrroms has said so before
you don't need a mon to be in the game to make a custom sprite and use it
GALAXY BRAIN
Super post production suggestion: Create an interface for users to swap current dex pokemon for other pokemon. This is the kind of thing I'd like to see once the game is complete and finished and done and not in any way in need of updates. It'd keep it fresh for years to come since we could just swap in whatever pokemon we'd want in the game putting the age old "Can you add [ ]" question to rest.
EV/IV screens for super hardcore grinding runs @_@, devour our pitiful mortal lives
Reshiram/Zekrom should give Fire/Electric respectively
Surely kyruem should just give ice then
Kyurem should give dragon as it makes more sense. Reshiram/Zekrom giving Fire/Electric makes sense because of the Fusion moves.
For the love of god, add the option to skip the DNA Splicers intro
Are you mad, dragon type is rare they should give their dragon type
make Aggron be an exception for fusions, make it give Rock/Steel instead of Steel/Rock
also make Salamence give only Dragon, like Dragonite
you tried fusing aggron with salamance didn't you
@frigid flicker do you mean when you start a new game?
My suggestion for Plate + Drive item fusion still stands... Genesect + Arceus fusion need their own item
Yes @rough gull
You can talk to the plant a bunch to reset the starters instead of starting a new game each time.
you can what now?!
wait what talk to what? i'm confused
does this work in a randomizer?
It only works in a randomizer
Why the frick did I not know this before😭
schrroms what plant
I'm going to go try this now
The plant that's next to the starters.
Shcrroms, just casually dropping bombshells, @_@
It's something I used for debugging, but I decided to leave it in the game because why not
because wynaut*, 😄
@echo tapir lol
yooo wynaut should be an emoji, when someone wants to say "why not" they say that emoji instead
No, but seriously while your here, would you consider EV/IV screens? I just feel its insanely tedious to go to the current machine for each and every pokemon if we want to do a extreme kind of run, but I suppose that could be just me
hell i did not know about the plant thing
I think no one knew
ability to buy multiples plox >.>
Triple Fusion:
Zoroark
Mewtwo
Lucario
Triple Fusion:
Celebi
Mew
Darkrai
(in otherwords "god please dont put me up against a caterpie with bug bite")
I think this is a fun and amazing machanic, perhaps this could be used elsewhere? Maybe rare encounters periodically appear out of the grass in various routes and charge you
Make this an emote because he be surprised
i mean he says "Nonononono dont do it"
A separate channel for all game downloads / hotfixes / additional files / link to the custom sprites. Everything in one place, easier for newbies and away from spriting contest announcements. It's getting kinda messy in #announcements .
I think the most important suggestion for me is that if you catch a pokemon with Hidden Ball, make the fusions with them get the Hidden Ab as fusions cant get a hidden one
How about a Hard Mode for the base game (similiar to demi ices post game mod) that also makes it so that non-traded pokemon will disobey when you lack badges?
No people hate reborn for that reason
^^
I liked the Reborn Hard Mode Mod that made all gym leaders have 6 pokemon, and made trainers have more/better ones, IDK how that would translate into randomizer tho
Well people would'nt have to play in Hard Mode if they dont like it @Ludistoise
A) If you wanna ping me do my whole name
B) I want to play hard mode but it's just kinda a douche move
yeah that way you can't cheese yourself around obstacles by just leveling ahead
Reborns levelling system is shit they should of had a level cap instead so once you reach the limit you can't go above it
but there are also people who only want to use 6 mons and be a bit overleveled
Nothing is stopping you from using more than 6 mons now, why should the game force you to do that? That is just bad game design
A game shouldn't be so hard that I have to recentre my team and sometimes neglect my starter every flipping gym or major battle THAT'S MORE THAN 18 TIMES FOR GODS SAKE
Best Fwends Emote required
I agree with this
For the minigames, the wording should be a bit cleared that it means the A key on the keyboard and not the standard 'A' button for Pokemon which is confirm.
Since a wynaut emoji might be added and I don't want this to get lost I think there should be a volt between these two
Press 1 for global link press 2 for other thing
I suggest giving it some time for a fair vote #fordemocary (end me)
The legendary golems should be added with a triple fusion, If any more Pokémon get added
magicool emote
Bestie Server
Already done
the legendary dogs as well
What do you mean?
im assuming hes reffering to Kunckles3&Knuckles suggestion, but afaik the dogs are in the game alreadt
I was talking about the Reggies
Someone else said "the legendary dogs as well" which are already in the game.
There's nowhere in the google drive for triple fusions. It would be nice if we had choices, especially with the contest.
The drive just has packs of sprites you can put in CustomBattlers, triples included
#BringBackTheLevelSplicers
I know the packs will have them, but there's a section that has them sorted by dex number. A fusion section for that would be nice.
After the contest, I'll make a section for them there
Yay, thank you!
make the Golbat minigame use spacebar instead of A
add a map for the Sevii Islands, so you can fly to the ones you visited already
Map sounds good, even without flying there
you can catch the boat on the 1st island, to go to the other islands
I think they want to travel to the other islands no matter where they are
all the islands have a boat that can take you anywhere, it would still be more convenient tho to have a map
Yep, there are people like me who never played any pokemon before and have no idea what's where
increase the selling price for Sacred Ash 
make it a multiplayer game online (ability to play the game coop)
that would be really really cool, but is that feasable?
Not even slightly
I wonder if it could be possible to make a feature that allows trading between 2 savefiles
Possible yes.
Local transfer is easier than having a dedicated transfer server
make it a multiplayer game online (ability to play the game coop)
This reminds me of Pokemon showdown, fight online with your team.
But the coop part is very hard
ability to Randomize Gifts/Bought Pokemon
I'd like to rename Pokemon in the storage boxes
Can we maybe get a FAQ or something about the triple types? They have odd weakness/resistance, and it seems like they don't get STAB with their base type moves?
Please let fusions of the same pokemon learn the same move only once when gaining a level.
That would be wonderful @solar barn but from a technical standpoint, each individual half is trying to learn the move, so it pops up twice. Triple fusions learn certain moves three times at the same level, which is slightly annoying too.
idk how often pokemon or added or if its just by demand, but I would really like to see some mons added that introduce new useful abilities for fusions. Like Sheer Force for example. Cause currently its only available as a Hidden Ability and those arent able to be fused
or have a way to choose Hidden Abilities if u fuse pokemon with it
yeah maybe through a npc because it could be difficult to add it through the fusion process, and have them take a fee or item (like heart scales maybe cough)
Idk what the Pokémon essentials limit on hidden abilities per Pokémon is, but if it's two then those two spots are already preoccupied by the reverse fusion abilities. If there's room for more though, maybe choosing them from a list like in the debug window would be possible (whether through an item or NPC doesn't really matter). 6 ability slots (2 normal and 4 HA) would be the sweet spot for this.
Question is how having 4 HAs interferes with the code for the (currently bugged) secret capsules and if that whole HA thing would need to be rewritten for this.
very minor suggestion, but it would be cool to be able to view all fusions of a pokemon that youve seen/caught in the pokedex. No idea if this is feasable or worth the effort, since its a pretty niche idea.
How to take a screenshot in Faq
I will increase a little bit the chance of meeting a fusion pokemon in wild
Scizor gives pure steel from fusions.
no
Put how aegislash works in faq, i think enough people are asking it should be put there.
that one is a pretty constant curiosity for sure.
buff leech life
@astral portal why ? how ?
buff it to the normal power the one of current generations
thats just too strong for how early its available
Then change when its learned
Maybe other moves/abilities/bst of pokemon could be changed too, depending on how possible it is
leech life was buffed as it is due to how stupidly weak bug pokemon already were haha. So there's some grounds for the request from a balance perspective.
And you can always change for absorb and buff bubble
Have a 4th starter from each gen and if you have that one then Gary picks the starter trio triple fusion
Oh come on
I think something funny (which is probably impossible) is if there was a more Chaotic Randomizer
Movesets, Evoltuon, Fusions, De-Fusions, Typings, and Ability were all randomized
I agree except for typing that defeats the purpose of fusing for a certain type, maybe just the base mon gets types randomised
not really the type thing would be very interesting imo, when you fuse the fusions would have the new types,stats,moves to take into account
Palette randomisation, add some more sprites to that place
but well that has a 0,00001% chance of happening since it would be a nightmare to code and stuff, but well a man can dream
also yay even more sprites that means the downloads are gonna be slower lol
More Meme Trainers like
Rising Star SmashMouth
'Hey now I'm an all star'
Only Star Pokemon
Starmie/Omastar
A trainer called falcon with fighting type pokemon that only know fire punch
A trainer called No U
Who says Uno Reverse
Who has mons with Mirror Coat, Mirror Move, Magic Coat, Magic Bounce, Counter and other reflecting moves
A public google doc or a new room here for trainer suggestions so this channel doesn't get cluttered
make the whirly tiles that throw you back in Dragons Den have an actual pattern, they just seem random and imo its pretty bs when you have to completly rely on RNG (yes i am salty)
Its already a pattern, the trick is to go for tiles that dont change to whirlpools [often]
perhaps making the ticks slower would be a good idea tho because they change quickly
I've found it a bit easier with repels and out of fast mode
A brains and Brawn double battle where at the end is a question, Brains or Brawn and depending on what you pick you get a mon
Highest Spatak fusion in game
Highest attack fusion in game
Needs to be very late game as in post, post game
sorta sounds like Alakazam or machamp xD
I mean Rampardos will definitely be involved in the highest attack fusion
Rampardos/Slaking
Or
Mewtwo/Kyogre have highest spattack but no legendaries and it's Alakazam/Porygon Z
Aegislash has 150. beats Alakazam
only in blade form
Another one for Spdef and Def and one for HP and Speed
oh, adding volcarona would be cool! Here, I have some examples of the cool fusions you can make!
we know
so you understand how absolutely off the walls awesome it would be. A man of culture such as myself I see
Remove Bidoof for something better
well, it gives access to Simple and Unaware ability
Bidoof is god
But there are better pokemon like haxorus volcarona drapion gogoat talonflame EVEN BIBAREL
Yes, please bring the Skorupi line
You do know Bidoof if the greatest pokemon right?
try to keep it on topic in here
Add dwebble just him
Well my suggestion is to replace Bidoof I get it's a joke but its kinda overdone and really useless
Then delete unow Also a bad pokemon
Maybe you guys can make the different game files more accessible
'cause I don't know how to play my previous one now that I made a new one
PLS HELP
C:\Users\your username\Saved Games\Pokémon Infinite Fusion
you just move your Game.rxdata somewhere else or rename it
if you rename your current save, then another save will be made as if you never played the game, so you'll have to save and start another game to have access to the randomizer
so, I'll take that as a yes
Next competition should be spooktober theme
^^^
Make an AFK voice chat where you get moved there after a while of not speaking. I think there’s someone AFK in the voice chat right now.
Suggestions :
add a channel to suggest pokemons to add, so we can ignore those suggestions 
There is no area in the Google Drive for triple fusions, the only way to get the contest sprites are from the reddit links. It would be nice to have a section for that, in case others want to give it a try for new sprites.
There should be a round boi emote
what is "round boi"
Voltorb fusions.
if it uses the dittorb or oddorb that'd be good me thinks
(or spheal/voltorb)
Add spheal to the game
noh
Yoh
blease add Swords Dance as a tutor move or as TM75 :-DD
its already a TM
it is?
Add Galar pokemon
Tutorial on how to download the patches, some people seem to be having issues
Yeah, also add a tutorial for using winrar/7/zip and also for basic windows explorer usage 
Add a catching tutorial
Add a walkthrough on how to battle, how to walk and how to interact in the game
also how to breathe and how to blink
make the game Sun and Moon
also add a function to talk to trees, which says: consume more O2 my friend
Add Pomeg berries to the pool of possible berries you can get from bushes that give random EV berries and remove Cornn berries from them, pretty please?
Would be cool to have a final boss/alt person type person (similar to red in Silver / Prof Oak that was coded into the gen 1 games) that was full of the most op fusions the community could come up with.
And would be cool if the AI was the best it could be too. Like have it be someone that has a setter with stealth rocks, a tank, a sweeper, etc. Would be fun to have a super challenge that you had to plan around and grind for and was something to look forward to end game. Also the community could request changes to the trainer and always be looking to somehow make him tougher (and I don't just mean giving him Lugia-Ho oh fusions or Rayquaza and Mewtwo and other op legendaries, but like strong fusions the community can just come up with with good natures, EV's, and items for their Pokemon as well).
I think it would be a good way to test out how well our team comp is and if we came up with a good team other than currently the best people can do is theorycraft and just say "yeah that would be good in theory" but never really getting to use their team to the full potential.
Make the trainer be Schrroms himself
Yeah would be cool for him to get to implement himself into the game too.
we have that, its called Hardmode
How do I do hardmode because I didn't see anything on it? And that specifically features what I mentioned? With a tough final boss of the best fusions people could come up with. I don't just mean the gym leaders having all of 1 type of pokemon but carefully though out, but 1 amazing hard trainer.
~~give them all DeStInY bOnD*
Do you think a community of this size can agree on a single team of 6? You would need atleast 10 of these trainers.
Most people here could fill 10 teams on their own tbh, I know I could and many others probably, too
Gold and Final Demiice are hard enough
Too bad the AI for the roughneck trainer class is so low its just spamming random moves
I wish it was raised to be similar to the other boss trainer classes
tbh it was a refreshing change from the obnoxiously difficult hardmode gym leaders when you take into account how tanky, fast and strong there pokes are all at once
I mean the community thing to agree on is just a thought on the overall idea. I just find it hard to believe that there's no major challenge of a single trainer when its been done before in other pokemon games and I feel like could be made even tougher in this one. Schrroms could even pick who he wanted himself.
EDIT: Well I haven't finished the game so I'm not sure if there is a trainer similar to red but just like the idea of it. It was personally my favorite part of Silver/Gold and other Pokemon games that had a similar trainer.
well theres hardmode Gold (mc from G/S) in this and someone even harder
Haven't gotten there yet so cool that what I wanted is already in there. Just thought it would be fun
Can we get trio starter fusions?
Shouldn't it be possible to have Blue keep his gen2, 3 & 4 Fused starter in NON randomized by adding 3 separate copies of him, that appear based on starter choice?
Had icon pack in the google drive
Maybe add a questlog to keep track of what you haven't done yet?
@rough gull give everyone a link on how to patch the game and use winrar, some people don't know basic winrar functions it's dumb
Add custom Pokedex entries
for 123k+ mons?
so basically;
Do you mean custom like the sprite gallery custom?
the person (who made the custom sprite) can make their own dex entries for it, that helps explain the extra features of a fusion
example: sulfur gas coming out of a weezing/sunflora fusion and talking about it
I think dex entries work by splitting pre-existing ones into two parts and using them, not just using a separate text file for each one
They are generated at the same time and in the same way as the Pokémon are. Outside of the game by a script, then afterwards added to the game. So they're baked into the game afaik. Even if you had RPG maker you probably couldn't edit them (at least not all of them).
And the dev certainly doesn't have the time to manually add all custom Pokédex entries, not to mention updating everytime someone writes a new one
it would be fine to be a request chat in the artwork part
you dont have the throw in custom dex entries jsut cause i like to write some for mine
lets make kanto trio starter fusion
add new fusion icon in the folder custom icon in the google drive
can we have the super dna splicers also have the ability to have the option of choosing it's nature of each fused pokemon
it used to be like that in 4.4
thats what the super splicer does
wait what
make iron head teachable to honedge line via move tutor
I know how breeding fusions should work
With your name I somehow don't doubt that.
All pokemans from Gen 3-5 and maybe some gen 6+????
again, the game wouldnt be able to handle all the sprites, since one mon adds like 702 fusions
Just add gen 6 starter's. That's all!
consider: 315 pokemon lags the game to hell and back for older computers
making the dex over 649 pokemon would kill Pokemon Essentials (c. 2008)
^^
If the creator said it, then it's final
oof
Wat if when breeding fusion the first fusion you put in the daycare has the head of the baby and 2nd one is the body
Like tentabat first is tentacool head and drapie is caterpie body
inb4 you can breed legend fusions like that
I think you can already breed legend fusions with a ditto
We just need 3 more mons and thats the spheal line
And we dont have room for 3 more mons
sadly
i dont think the game needs bidoof tbh. the meme is kind of dumb and a better pokemon could be put in instead. Just my opinion tho. Also just a random suggestion that doesnt have to do with the above.
Who needs klinklang
alright back off i love klinklang
move the sprites up maybe? I'd like to see all of the glory that is THE MIGHTY SKEKSIS
that says Skeksis
silence heretic
dab
just move the sprite in the actual sprite image up 4head
add in the prevos for Flygon, Sala, Aggron, and Luxray
we're already at the limit since every new mon added adds 700+ new sprites. do we really need pre-evos when we have the final evo?
schrroms said he won't be adding any new mons unless gen 8 adds evolutions of mons that are already in the game
ok that makes sense, but it would've of be cool to see their pre evos with certain fusions
Does that mean we’re going to have sirfetchd?
give the pokeballs in the golbat soar minigame more of a hitbox. you have to hit them just right to pick them up right now. Not to mention some just like straight up dont work
custom back sprites?
you can already make those yourself and add them in, i believe
you cant
custom back sprites is too much work
Anyways takes up sprite space
Also, I believe Schrroms said it's not the sprites that make it harder to add more pokémon, but the raw pokémon data itself. The game just chokes on more species than it was built to handle
and considering most pokemon games are at max 2k or so... over 100k is a bit of a choking hazard for a patch made in 2008.
Would it be too ambitious to do this on a newer platform? Not a request, just genuinely curious.
the platform isn't the problem. The problem is that RubyScript just isn't able to process that much data. You'd need to change to stop using RMXP and programm the whole game yourself to make more pokemon work in IF
Could you add fused abilities, ex:omaleep gets Sticky Swim(Suction cups but when it's raining no pokemon can switch), or Storm Armor(Gives immunity to water, and if hit by a water move its next move is a guaranteed crit)
that would probably be way to hard to add
Dude. a suggestion is a suggestion. Whether it's hard to do or not doesn't matter. The dev doesn't have to chose this suggestion if he think it's too hard
fair enough
It would be nice to have A npc who can inflict Poison/Burn/Paralysis on your Pokemon (for Poison Heal, Guts, Marvel Scale, Gyro Ball)
Add a request channel in the artwork category
isnt there a doc for requests already?
or you know, just ask for them publicly
Remove Honedge/Doublade for Florges, Hydreigon or Volcarona? Just a thought.
volcarona would be cool
Not even more unfinished lines please..
more unfinished lines
dont
I guess that makes more sense
sure unfinished lines are annoying, but i feel like more pokemon would be better than full lines of pokemon that arent really needed.
why not remove all prevolutions then by that logic?
i mean- i dont really know how to respond to that
That would scrap a LOT of custom sprites that people worked hard on.
sarcasm
Just saying.
always could make a different version of infinite fusion with soley final evos i guess
Level 5 fully evolved starters.
just randomize it
The initial chat started with the idea of removing lower evolutions for a few Pokemon to allow newer fully evolved ones to be in the game.
fused abilities, ex:omaleep gets Sticky Swim(Suction cups but when it's raining no pokemon can switch), or Storm Armor(Gives immunity to water, and if hit by a water move its next move is a guaranteed crit)
wow you just copied Coded Lightnings suggestion
thats a cool idea but would take too long to add, combinations for every ability
add in missingno. as a post-game boss of some sort that cannot be fused with pokemon
It would be neat if the randomizer could randomize the triple fusion you fight into one of the other triple fusion
Though each one would need a Boss Battle moveset to keep it appropriately challenging
Make Perfect Ball's catch rate better. It's way too infuriating to use reliably. Been spending 20 minutes to catch a freaking nidoran with it while asleep and false swiped.
I mean even double or triple its original rate would be better than this, almost feels like a pokeball from a mobile game
I mean you're using a pokeball which maxes all of the IVs of the caught pokemon... that's definitely not broken at all... that's totally plausable to increase the catchrate to catch a complete pokemon
I thought it was 2 to 6 max ivs. Not all of them for sure.
make sierfetched which is the gen 8 evolution of farfetched
Change some pokemons bsts like noctowl to be the gen 7 version
Jolteon/Vaporeon/Flareon triple fusion?
seems unnecessary
Yeh might aswell do an omega eevee fusion by having a special splicer and 6/7 eeveelutions in party which you then fuse using a normal splicers with Sylveon
Or just Eeeeeevveeeeee which evolves using any of the stones
Add a pinned message to playthroughtalk about how to get into secret garden(maybe a short clip)
Shinies?
too much sprites, so no
ok
Is there like a google drive, where i can download every custom sprite ever made?
petition to fucking remove the double grunt fight in lavender
@tranquil ore Oh yes, please.
A fix on the Defiant ability of the Pawniard line would be rad too.
or like just give the pokemon with abilities that aren't working other abilities in case they can't be fixed
petition to fucking remove the double grunt fight in lavender
Why tho ?
because it's glitchy
If one of you pokemon evolve during the fight, the game crash as hell
Fusions of the same pokemon (for instance Butterfree butterfree) should have a plus in stats like megas
Random Evolutions
No
Kalos
If the same Pokemon is fused it should have it's hidden ability
but theres ability balls that force the hidden ability
But it's nicer to fuse 2 vulpix and get drought instead of flash fire or whatever it usually has
but 2 vulpix makes it ice type because alola forms
^ plus ability balls are a thing
Alright then give it snow warning quite a few people like the suggestion it wouldn't hurt for it to be added
Fog Off baiting Blaine is funsies
Add an NPC who can teach evolved Pokemon pre-evolution-exclusive moves if they are the correct level or above
As I suggested before in general fusing the same pokemon has no advantage excepting the alola forms That is why I suggested and increase of stats like megas So Venasaur / Venasaur should have the same stats as MVenasaur (and its sprite obviously) And "new" Like Buterfree/Butterfree (who has the gigamax sprite) a +100 stat like Megas do I know it is a tedious process but it can be done in the long run
Maybe +20 in every stat except HP?
In older versions fusions did used to have bonuses to their stats, but this was removed a while back to make normal pokemon still viable.
In fact i would like the bonuses back That made fusions with bad pokemon lile Furret viable
Those bonuses benefited strong Pokémon more than weak ones, as it was %based
But a flat bonus based on BST would be pretty good. Could probably be put into the stat formula as well, so it wouldn't need to be done manually.
For example giving everything below 500 BST a flat bonus, gradually increasing the lower it is
Maybe the +20 is enough Although custom would be awesome (like the megas) //The bonus in fact benefit pokemon with the same hightest stat Like venusaur or mew
"The bonus in fact benefit pokemon with the same hightest stat Like venusaur or mew" that was the old-old bonus, it was changed to highest stats in general and after that removed completely.
A Mewtwo fusion got 30+ sp.att from that while weak and hybrid pkmn got shafted
It could be an option to turn on or off such a bonus.
Or a option that only exist if you already had a save (very much like the randomize option) so you still encourage people to play a normal game the first time they play it and allow them a bit more freedom on the other plays.
Or as Stanlay said, some kind of balance bonus that only trigger on weak enough monsters. Since the stats are pre-generated with some kind of script and stored in the database anyway, it shouldn't be too hard to add it to the formula that generate it. something like: "If both pokemon are the same and that the pokemon have under xxx BST. then the first two higher stats get +xx . In case of stats equality then the priority order is HP, Speed, Atk, spe atk, def, spe def. so only two stats get the bonus regardless of pokemon with more than 2 high stats." (although it would make my online calculator harder to maintain lol)
It's not really important if that kind of bonuses never end up in the game though in my opinion. I mean, the fun part of infinit fusion is to actually play with non existent species made by fusioning two pokemon and fusion the same pokemon give you the same species so it's kinda meh.
Someone should make like an essentials folder for spriting like pokemons with only their body and stuff
sprite sheets from gen 1-5 are already pinned in #spriting-discussion , with exactly the stuff you described
Icy Wind Weavile
Are there any plans to make thick club work on marrowack head too
It already does
I thought it only worked if marrowack was the body Pokémon
@rough gull hey I’m assuming you’d know the answer but it’s not urgent since I have neither at the moment
Yes it's just the body
Sad, all I want is skeleton physical charizard
Is that a choice of yours or a engine/coding restriction or something
It's by choice
I don't really remember why i decided to make it body only, but I'm sure it made sense at the time
I’m assuming because body takes mostly marrowacks attack so you can’t have 2/3 of like garchops attack.
Well if that ever changes tell me because I’d like some strong skeletons
I don't really remember why but I'm sure it made sense at the time
mood x)
what?
i'm refering to the fact that those words are highly relatable to, especially in the context of computer science
It's definitely because the body holds the bone yup yup.
It's definitely because the body holds the bone yup yup.
I just want op mons
Dragonite/azumaril is an op mons : dragon/fairy + huge power + DD...
Add adamant on top of that and all die faster that light speed
Does Azumarill need to be the body for huge power?
head i think
Imagine huge power with a marrowack body
4x attack