- 16
- Posts
- 5
- Years
- Seen May 1, 2023
Hello all, I am currently redesigning my Pokemon Summary Screens and went for a Sword/Shield like minimalistic design. Problem is that the regular icons and texts are a bit too big for the summary screen.
So my question is: Is it possible to draw icons in half the size or even in 0.75 and how would i modify this section for example to achieve this?
Same question for the text:
Thanks in advance :)
So my question is: Is it possible to draw icons in half the size or even in 0.75 and how would i modify this section for example to achieve this?
Code:
# Show the Poké Ball containing the Pokémon
ballimage = sprintf("Graphics/Pictures/Summary/icon_ball_%02d",@pokemon.ballused)
imagepos.push([ballimage,300,18,0,0,-1,-1,])
Code:
# Write the held item's name
if @pokemon.hasItem?
textpos.push([PBItems.getName(@pokemon.item),16,352,0,Color.new(64,64,64),Color.new(176,176,176)])
else
textpos.push([_INTL("None"),16,352,0,Color.new(192,200,208),Color.new(208,216,224)])
end
Last edited: