mirror of
https://github.com/infinitefusion/infinitefusion-e18.git
synced 2025-12-12 23:44:58 +00:00
DNA Splicers WIP
This commit is contained in:
@@ -164,4 +164,17 @@ def swapReleaseCaughtPokemon(caughtPokemon)
|
||||
$player.party[index] = $player.party[-1]
|
||||
$player.party[-1] = tmp
|
||||
return true
|
||||
end
|
||||
|
||||
def Kernel.getItemNamesAsString(list)
|
||||
strList = ""
|
||||
for i in 0..list.length - 1
|
||||
id = list[i]
|
||||
name = PBItems.getName(id)
|
||||
strList += name
|
||||
if i != list.length - 1 && list.length > 1
|
||||
strList += ","
|
||||
end
|
||||
end
|
||||
return strList
|
||||
end
|
||||
Reference in New Issue
Block a user