• Just a reminder that providing specifics on, sharing links to, or naming websites where ROMs can be accessed is against the rules. If your post has any of this information it will be removed.
  • Ever thought it'd be cool to have your art, writing, or challenge runs featured on PokéCommunity? Click here for info - we'd love to spotlight your work!
  • Welcome to PokéCommunity! Register now and join one of the best fan communities on the 'net to talk Pokémon and more! We are not affiliated with The Pokémon Company or Nintendo.

Heres some free Items/Abilities I made

  • 67
    Posts
    4
    Years
    • He/Him
    • Seen Nov 16, 2023
    So here are the the Items I made


    first one is the Double Screen (yes basically the one from temtem)

    if opponent.hasWorkingItem(:DOUBLESCREEN) && self.type2==type
    defmult=(defmult*1.25).round
    end
    I made this one 25% instead of 20% just cause its pokemon and not temtem but you can just change the number from 1.25 to 1.2 if you want 20%

    Second one is Latent Screen (this item increases your defenses by 30% if the holder has a base stat total that is 460 or lower but if it hits 360 or lower it will boost your defenses by 60%)

    if opponent.hasWorkingItem(:LATENTSCREEN)
    if pbBaseStatTotal(self.species)<461
    defmult=(defmult*1.3).round
    elsif pbBaseStatTotal(self.species)<361
    defmult=(defmult*1.6).round
    end
    end

    Now for the third one I made a ability using the BST stuff this ability is called headhunter (This ability makes it so that the user of the ability can do double damage against any pokemon with a base stat total of 600 or higher I pretty much just made a pokemon that is decent against normal pokemon but can take on legendaries with ease you can adjust the multiplier)

    if attacker.hasWorkingAbility(:HEADHUNTER) && pbBaseStatTotal(self.species)>599
    atkmult=(atkmult*2.0).round
    end



    Here are the PBS files

    ITEMS
    xxx,LATENTSCREEN,Latent Screen,Latent Screens,1,200,"A screen that can reduce the opponents damage based off of the users Base stat total.",0,0,0,
    xxx,DOUBLESCREEN,Double Screen,Double Screens,1,200,"A screen that has folded into itself reducing the power of enemy dual typed pokemon.",0,0,0,

    ABILITIES
    xxx,HEADHUNTER,Head Hunter,"Does double Damage to Pokemon with a base stat total of 600 or more."
     
    Back
    Top