- 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)
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%)
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)
Here are the PBS files
first one is the Double Screen (yes basically the one from temtem)
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%if opponent.hasWorkingItem(:DOUBLESCREEN) && self.type2==type
defmult=(defmult*1.25).round
end
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."