Recent content by ShadowphilYt

  1. ShadowphilYt

    Script: Doodle Move Script for Pokemon Essentials V.18

    This is a Script of the Move Doodle. Since I couldn´t find a script of it myself for Version 18, I´ve just made a script for it myself. #=============================================================================== # Changes the abilities on your side to the ability of the target. (Doodle)...
  2. ShadowphilYt

    Script: Check if a Pokemon of a specific slot has the given type for Pokemon Essentials V18

    def pbMonoType?(type,pokemonIndex) for i in 0...$Trainer.party.length next if i==pokemonIndex p = $Trainer.party[i] type = getID(PBTypes,type) return false if p.hasType?(type) end return true end Paste the script above below the script pbHasType?(type)and this is basically...
  3. ShadowphilYt

    Script: Check if there isn´t a Pokemon of a specific type in Pokemon Essentials V.18

    I don´t know if someone else has already done it and it´s very simple so most people won´t have any problems adding it at all but for anyone that wants to add a script that checks if the player does NOT have a Pokemon of that specific type in the party. Just paste below the script of "def...
  4. ShadowphilYt

    [Question] Can someone please help me? For some reason whenever I try to battle a trainer this error comes up. Did I mess something up I shouldn´t?

    --------------------------- Pokemon Control and Freedom --------------------------- [Pokémon Essentials version 18.1] Exception: NameError Message: undefined local variable or method `i' for #<PokeBattle_AI:0xd79bde8> Backtrace: AI_Move_Utilities:307:in `pbRoughDamage' AI_Move:255:in...
  5. ShadowphilYt

    Pixilate Ability Script

    Normal-type moves become Fairy type and deal 20% more damage. Paste this first in PokeBattle_Move under Normalize: def pbType(type,attacker,opponent) if isConst?(type,PBTypes,:NORMAL) && attacker.hasWorkingAbility(:PIXILATE) type=getConst(PBTypes,:FAIRY) || 0 end return...
  6. ShadowphilYt

    Ability which heals every round a bit

    Uff sorry if you have posted that script then I was too blind to find it I´m sorry. ^^´ But thank you very much for this information :D
  7. ShadowphilYt

    Ability which may freeze the foe on contact

    This Ability may freeze the foe if it got attacked by a Physical move: Paste this in PokeBattle_Battler under Poisonpoint: #Absolute Cold if target.hasWorkingAbility(:ABSOLUTECOLD,true) && @battle.pbRandom(10)<2 && user.pbCanFreeze?(false)...
  8. ShadowphilYt

    Ability which heals every round a bit

    I created a script which heals the user every round about 1/16 HP. In my case it´s called Bloodlust because I tought why not I guess? Just paste this in PokeBattle_Battle under Rain Dish: # Bloodlust if i.hasWorkingAbility(:BLOODLUST) PBDebug.log("[#{i.pbThis}'s Bloodlust...
  9. ShadowphilYt

    Wild Encounters Hidden Abilities Chance

    I'm happy that I could help you ^^
  10. ShadowphilYt

    Wild Encounters Hidden Abilities Chance

    Post that in PField_EncounterModifiers Events.onWildPokemonCreate+=proc {|sender,e| pokemon=e[0] if rand(60) < 1 pokemon.setAbility(2) end } With this script is the Possibility that the encounter of the Players has a chance of 1 to 60 that that pokemon has it´s hidden ability...
  11. ShadowphilYt

    Question: How to delete a post?

    I made 3 post about the same thing and I want to delete the 2 previous ones (even tough I think the second one didn´t even got published) it´s already an ad but to have them several times on a few sites feels like I would die if someone doesn´t recognice it so where can i do that?
  12. ShadowphilYt

    [Sword & Shield] Are you excited for the Pokemon Sword and Shield dlc or do you think it´s just a total rip off?

    So true and well I also buyed it right away. I was so hyped because of the trailer I forgot to search for a less expansive variant XD
  13. ShadowphilYt

    [Fan Game] Tritra Serpifeus Magical Journey through Moemon 0.2.0

    You game sound pretty cool! I think I´ll try it once I have time :D
  14. ShadowphilYt

    [Sword & Shield] Do I do anything wrong in shiny hunting?

    I´m a little bit frustrated for quite a time now because I have the shiny charm and breedet already over 1000 eggs and still no sign for a shiny. Did I forget something? Or is it just bad luck because I saw youtuber where had it´s shiny after the 700st egg already :/
Back
Top