mirror of
https://github.com/infinitefusion/infinitefusion-e18.git
synced 2026-03-09 18:02:00 +00:00
Compare commits
19 Commits
rocket-azu
...
90bc6770ff
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
90bc6770ff | ||
|
|
e5e1ec5b0e | ||
|
|
9dffb6f99d | ||
|
|
9853b8d6e4 | ||
|
|
be2edbef70 | ||
|
|
e1b6d7e7a9 | ||
|
|
290b6f81d1 | ||
|
|
80de6b019d | ||
|
|
eb694dcdb5 | ||
|
|
230b1b86b4 | ||
|
|
692a78d041 | ||
|
|
fc87f353d7 | ||
|
|
a0fb092441 | ||
|
|
a895180ac5 | ||
|
|
f7ff2da270 | ||
|
|
e6b17bf990 | ||
|
|
f7d05eca58 | ||
|
|
bd7a15d1fc | ||
|
|
6af6e448e6 |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -283,7 +283,13 @@ Events.onMapChange += proc { |_sender, e|
|
||||
if new_map_metadata && new_map_metadata.teleport_destination
|
||||
$PokemonGlobal.healingSpot = new_map_metadata.teleport_destination
|
||||
end
|
||||
$PokemonMap.clear if $PokemonMap
|
||||
if $PokemonMap
|
||||
blackFluteUsed = $PokemonMap.blackFluteUsed
|
||||
whiteFluteUsed = $PokemonMap.whiteFluteUsed
|
||||
$PokemonMap.clear
|
||||
$PokemonMap.blackFluteUsed = blackFluteUsed
|
||||
$PokemonMap.whiteFluteUsed = whiteFluteUsed
|
||||
end
|
||||
$PokemonEncounters.setup($game_map.map_id) if $PokemonEncounters
|
||||
$PokemonGlobal.visitedMaps[$game_map.map_id] = true
|
||||
next if old_map_ID == 0 || old_map_ID == $game_map.map_id
|
||||
|
||||
@@ -462,7 +462,12 @@ def pbLearnMove(pkmn, move, ignoreifknown = false, bymachine = false, fast = fal
|
||||
if forgetmove >= 0
|
||||
oldmovename = pkmn.moves[forgetmove].name
|
||||
oldmovepp = pkmn.moves[forgetmove].pp
|
||||
forgotten_move = pkmn.moves[forgetmove]
|
||||
pkmn.add_learned_move(forgotten_move)
|
||||
|
||||
pkmn.moves[forgetmove] = Pokemon::Move.new(move) # Replaces current/total PP
|
||||
pkmn.add_learned_move(move)
|
||||
|
||||
if bymachine && Settings::TAUGHT_MACHINES_KEEP_OLD_PP
|
||||
pkmn.moves[forgetmove].pp = [oldmovepp, pkmn.moves[forgetmove].total_pp].min
|
||||
end
|
||||
|
||||
@@ -148,17 +148,19 @@ Events.onStepTaken += proc {
|
||||
|
||||
ItemHandlers::UseInField.add(:BLACKFLUTE, proc { |item|
|
||||
pbUseItemMessage(item)
|
||||
pbMessage(_INTL("Wild Pokémon will be repelled."))
|
||||
$PokemonMap.blackFluteUsed = true
|
||||
message = $PokemonMap.blackFluteUsed ? "Wild Pokemon will no longer be repelled.": "Wild Pokémon will be repelled."
|
||||
pbMessage(_INTL(message))
|
||||
$PokemonMap.blackFluteUsed = !$PokemonMap.blackFluteUsed
|
||||
$PokemonMap.whiteFluteUsed = false
|
||||
next 1
|
||||
})
|
||||
|
||||
ItemHandlers::UseInField.add(:WHITEFLUTE, proc { |item|
|
||||
pbUseItemMessage(item)
|
||||
pbMessage(_INTL("Wild Pokémon will be lured."))
|
||||
message = $PokemonMap.whiteFluteUsed ? "Wild Pokemon will no longer be lured.": "Wild Pokémon will be lured."
|
||||
pbMessage(_INTL(message))
|
||||
$PokemonMap.whiteFluteUsed = !$PokemonMap.whiteFluteUsed
|
||||
$PokemonMap.blackFluteUsed = false
|
||||
$PokemonMap.whiteFluteUsed = true
|
||||
next 1
|
||||
})
|
||||
|
||||
|
||||
@@ -62,6 +62,7 @@ class PokeRadar_UI
|
||||
|
||||
def addPokemonIcon(species, blackened = false, rare=false)
|
||||
pokemonId=dexNum(species)
|
||||
return if !pokemonId
|
||||
iconId = _INTL("{1}", species)
|
||||
|
||||
pokemonBitmap = pbCheckPokemonIconFiles(species)
|
||||
|
||||
@@ -55,7 +55,7 @@ class Pokemon
|
||||
# @return [Array<Pokemon::Move>] the moves known by this Pokémon
|
||||
attr_accessor :moves
|
||||
|
||||
# @return [Array<Pokemon::Move>] All the moves ever learned by this Pokémon
|
||||
# @return [Array<Symbol>] All the move (ids) ever learned by this Pokémon
|
||||
attr_accessor :learned_moves
|
||||
|
||||
# @return [Array<Integer>] the IDs of moves known by this Pokémon when it was obtained
|
||||
@@ -606,12 +606,12 @@ class Pokemon
|
||||
|
||||
# Makes this Pokémon male.
|
||||
def makeMale
|
||||
self.gender = 0;
|
||||
@gender = 0
|
||||
end
|
||||
|
||||
# Makes this Pokémon female.
|
||||
def makeFemale
|
||||
self.gender = 1;
|
||||
@gender = 1
|
||||
end
|
||||
|
||||
# @return [Boolean] whether this Pokémon is male
|
||||
@@ -874,14 +874,20 @@ class Pokemon
|
||||
for i in first_move_index...knowable_moves.length
|
||||
move = Pokemon::Move.new(knowable_moves[i])
|
||||
@moves.push(move)
|
||||
@learned_moves = [] if !@learned_moves
|
||||
@learned_moves << move if !@learned_moves.include?(move)
|
||||
add_learned_move(move)
|
||||
end
|
||||
end
|
||||
|
||||
def add_learned_move(move)
|
||||
@learned_moves = [] if !@learned_moves
|
||||
@learned_moves << move unless @learned_moves.include?(move)
|
||||
if move.is_a?(Symbol)
|
||||
@learned_moves << move unless @learned_moves.include?(move)
|
||||
else
|
||||
move_id = move.id
|
||||
if move_id
|
||||
@learned_moves << move_id unless @learned_moves.include?(move_id)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
@@ -902,9 +908,7 @@ class Pokemon
|
||||
@moves.push(move)
|
||||
# Delete the first known move if self now knows more moves than it should
|
||||
@moves.shift if numMoves > MAX_MOVES
|
||||
@learned_moves = [] if !@learned_moves
|
||||
@learned_moves << move if !@learned_moves.include?(move)
|
||||
echoln @learned_moves
|
||||
add_learned_move(move)
|
||||
end
|
||||
|
||||
# Deletes the given move from the Pokémon.
|
||||
@@ -912,17 +916,23 @@ class Pokemon
|
||||
def forget_move(move_id)
|
||||
move_data = GameData::Move.try_get(move_id)
|
||||
return if !move_data
|
||||
add_learned_move(move_id)
|
||||
@moves.delete_if { |m| m.id == move_data.id }
|
||||
end
|
||||
|
||||
# Deletes the move at the given index from the Pokémon.
|
||||
# @param index [Integer] index of the move to be deleted
|
||||
def forget_move_at_index(index)
|
||||
move_id = @moves[index].id
|
||||
add_learned_move(move_id)
|
||||
@moves.delete_at(index)
|
||||
end
|
||||
|
||||
# Deletes all moves from the Pokémon.
|
||||
def forget_all_moves
|
||||
for move in @moves
|
||||
add_learned_move(move)
|
||||
end
|
||||
@moves.clear
|
||||
end
|
||||
|
||||
@@ -967,8 +977,10 @@ class Pokemon
|
||||
end
|
||||
|
||||
def pokemon_can_learn_move(species_data, move_data)
|
||||
moveset = species_data.moves.map { |pair| pair[1] }
|
||||
return species_data.tutor_moves.include?(move_data.id) ||
|
||||
species_data.moves.include?(move_data.id) ||
|
||||
species_data.moves.include?(move_data.id) || ##this is formatted as such [[1, :PECK],[etc.]] so it never finds anything when move_data is just the symbol. Leaving it there in case something depends on that for some reason.
|
||||
moveset.include?(move_data.id) ||
|
||||
species_data.egg_moves.include?(move_data.id)
|
||||
end
|
||||
|
||||
@@ -1589,7 +1601,6 @@ class Pokemon
|
||||
@hat_y = 0
|
||||
@size_category = determine_size_category()
|
||||
@sprite_scale=determine_scale()
|
||||
echoln @sprite_scale
|
||||
calc_stats
|
||||
if @form == 0 && recheck_form
|
||||
f = MultipleForms.call("getFormOnCreation", self)
|
||||
|
||||
@@ -1190,6 +1190,42 @@ class PokemonPartyScreen
|
||||
end
|
||||
end
|
||||
|
||||
def pbRememberMoves(pokemon)
|
||||
learnable_moves = pokemon.learned_moves
|
||||
learnable_moves = [] if !learnable_moves
|
||||
#exclude current moves
|
||||
echoln "learned moves: #{learnable_moves}"
|
||||
for current_move in pokemon.moves
|
||||
if learnable_moves.include?(current_move.id)
|
||||
learnable_moves.delete(current_move.id)
|
||||
end
|
||||
end
|
||||
move_ids = []
|
||||
for move in learnable_moves
|
||||
if move.is_a?(Symbol)
|
||||
move_ids << move if pokemon.compatible_with_move?(move)
|
||||
end
|
||||
end
|
||||
|
||||
if move_ids.empty?
|
||||
pbMessage(_INTL("{1} has no moves to remember!",pokemon.name))
|
||||
return false
|
||||
end
|
||||
|
||||
echoln move_ids
|
||||
|
||||
retval = true
|
||||
pbFadeOutIn {
|
||||
scene = MoveRelearner_Scene.new
|
||||
screen = MoveRelearnerScreen.new(scene)
|
||||
if !learnable_moves.empty?
|
||||
retval = screen.pbStartScreen(pokemon, move_ids)
|
||||
else
|
||||
return false
|
||||
end
|
||||
}
|
||||
return retval
|
||||
end
|
||||
def pbPokemonRename(pkmn, pkmnid)
|
||||
cmd = 0
|
||||
loop do
|
||||
@@ -1240,6 +1276,7 @@ class PokemonPartyScreen
|
||||
cmdMail = -1
|
||||
cmdItem = -1
|
||||
cmdHat = -1
|
||||
cmdLearnMove = -1
|
||||
|
||||
# Build the commands
|
||||
commands[cmdSummary = commands.length] = _INTL("Summary")
|
||||
@@ -1263,6 +1300,8 @@ class PokemonPartyScreen
|
||||
end
|
||||
end
|
||||
commands[cmdNickname = commands.length] = _INTL("Nickname") if !pkmn.egg?
|
||||
commands[cmdLearnMove = commands.length] = _INTL("Remember moves")
|
||||
|
||||
commands[commands.length] = _INTL("Cancel")
|
||||
command = @scene.pbShowCommands(_INTL("Do what with {1}?", pkmn.name), commands)
|
||||
havecommand = false
|
||||
@@ -1324,6 +1363,8 @@ class PokemonPartyScreen
|
||||
}
|
||||
elsif cmdHat >= 0 && command == cmdHat
|
||||
pbPokemonHat(pkmn)
|
||||
elsif cmdLearnMove > 0 && command == cmdLearnMove
|
||||
pbRememberMoves(pkmn)
|
||||
elsif cmdNickname >= 0 && command == cmdNickname
|
||||
pbPokemonRename(pkmn, pkmnid)
|
||||
elsif cmdDebug >= 0 && command == cmdDebug
|
||||
|
||||
@@ -131,13 +131,14 @@ end
|
||||
#===============================================================================
|
||||
#
|
||||
#===============================================================================
|
||||
class NumberOption
|
||||
class NumberOption < Option
|
||||
include PropertyMixin
|
||||
attr_reader :name
|
||||
attr_reader :optstart
|
||||
attr_reader :optend
|
||||
|
||||
def initialize(name, optstart, optend, getProc, setProc)
|
||||
def initialize(name, optstart, optend, getProc, setProc, description="")
|
||||
super(description)
|
||||
@name = name
|
||||
@optstart = optstart
|
||||
@optend = optend
|
||||
@@ -214,6 +215,7 @@ class Window_PokemonOption < Window_DrawableCommand
|
||||
@mustUpdateDescription = false
|
||||
@selected_position = 0
|
||||
@allow_arrows_jump = false
|
||||
@is_first_update = true
|
||||
for i in 0...@options.length
|
||||
@optvalues[i] = 0
|
||||
end
|
||||
@@ -321,23 +323,43 @@ class Window_PokemonOption < Window_DrawableCommand
|
||||
oldindex = self.index
|
||||
@mustUpdateOptions = false
|
||||
super
|
||||
dorefresh = (self.index != oldindex)
|
||||
|
||||
if @is_first_update
|
||||
# Needed for displaying the description of the initially selected option correctly
|
||||
@selected_position = self[self.index]
|
||||
@mustUpdateOptions = true
|
||||
@mustUpdateDescription = true
|
||||
@is_first_update = false
|
||||
refresh
|
||||
return
|
||||
end
|
||||
|
||||
if self.active && self.index < @options.length
|
||||
if Input.repeat?(Input::LEFT)
|
||||
self[self.index] = @options[self.index].prev(self[self.index])
|
||||
dorefresh =
|
||||
@selected_position = self[self.index]
|
||||
@mustUpdateOptions = true
|
||||
@mustUpdateDescription = true
|
||||
elsif Input.repeat?(Input::RIGHT)
|
||||
self[self.index] = @options[self.index].next(self[self.index])
|
||||
dorefresh = true
|
||||
@selected_position = self[self.index]
|
||||
@mustUpdateOptions = true
|
||||
@mustUpdateDescription = true
|
||||
refresh if self[self.index]
|
||||
return
|
||||
end
|
||||
if Input.repeat?(Input::RIGHT)
|
||||
self[self.index] = @options[self.index].next(self[self.index])
|
||||
@selected_position = self[self.index]
|
||||
@mustUpdateOptions = true
|
||||
@mustUpdateDescription = true
|
||||
refresh
|
||||
return
|
||||
end
|
||||
if Input.repeat?(Input::UP) || Input.repeat?(Input::DOWN)
|
||||
@selected_position = self[self.index]
|
||||
@mustUpdateOptions = true
|
||||
@mustUpdateDescription = true
|
||||
refresh
|
||||
return
|
||||
end
|
||||
end
|
||||
refresh if dorefresh
|
||||
refresh if (self.index != oldindex)
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
@@ -190,7 +190,7 @@ class MoveRelearnerScreen
|
||||
end
|
||||
if move
|
||||
if @scene.pbConfirm(_INTL("Teach {1}?", GameData::Move.get(move).name))
|
||||
if pbLearnMove(pkmn, move)
|
||||
if pbLearnMove(pkmn, move, false, true)
|
||||
@scene.pbEndScene
|
||||
return true
|
||||
end
|
||||
|
||||
@@ -201,14 +201,24 @@ PokemonDebugMenuCommands.register("setlevel", {
|
||||
if pkmn.egg?
|
||||
screen.pbDisplay(_INTL("{1} is an egg.", pkmn.name))
|
||||
else
|
||||
params = ChooseNumberParams.new
|
||||
params.setRange(1, GameData::GrowthRate.max_level)
|
||||
params.setDefaultValue(pkmn.level)
|
||||
level = pbMessageChooseNumber(
|
||||
_INTL("Set the Pokémon's level (max. {1}).", params.maxNumber), params) { screen.pbUpdate }
|
||||
if level != pkmn.level
|
||||
screen.pbRefreshSingle(pkmnid)
|
||||
|
||||
if $PokemonSystem.level_caps==1
|
||||
choice= pbMessage(_INTL("Set to which level?"),[_INTL("Set to level cap"), _INTL("Set to specific level"), _INTL("Cancel")],2)
|
||||
if choice==0
|
||||
level = getCurrentLevelCap()
|
||||
elsif choice == 1
|
||||
level = promptSetLevelToNumber(pkmn,screen)
|
||||
else
|
||||
return
|
||||
end
|
||||
else
|
||||
level = promptSetLevelToNumber(pkmn,screen)
|
||||
end
|
||||
if level && level != pkmn.level
|
||||
pkmn.level = level
|
||||
pkmn.calc_stats
|
||||
screen.pbUpdate
|
||||
screen.pbRefreshSingle(pkmnid)
|
||||
end
|
||||
end
|
||||
@@ -216,6 +226,15 @@ PokemonDebugMenuCommands.register("setlevel", {
|
||||
}
|
||||
})
|
||||
|
||||
def promptSetLevelToNumber(pkmn,screen)
|
||||
params = ChooseNumberParams.new
|
||||
params.setRange(1, GameData::GrowthRate.max_level)
|
||||
params.setDefaultValue(pkmn.level)
|
||||
level = pbMessageChooseNumber(
|
||||
_INTL("Set the Pokémon's level (max. {1}).", params.maxNumber), params) { screen.pbUpdate }
|
||||
return level
|
||||
end
|
||||
|
||||
PokemonDebugMenuCommands.register("setexp", {
|
||||
"parent" => "levelstats",
|
||||
"name" => _INTL("Set Exp"),
|
||||
|
||||
@@ -481,10 +481,15 @@ def get_difficulty_text
|
||||
end
|
||||
end
|
||||
|
||||
def pokemonExceedsLevelCap(pokemon)
|
||||
return false if $Trainer.badge_count >= Settings::NB_BADGES
|
||||
def getCurrentLevelCap()
|
||||
current_max_level = Settings::LEVEL_CAPS[$Trainer.badge_count]
|
||||
current_max_level *= Settings::HARD_MODE_LEVEL_MODIFIER if $game_switches[SWITCH_GAME_DIFFICULTY_HARD]
|
||||
return current_max_level
|
||||
end
|
||||
|
||||
def pokemonExceedsLevelCap(pokemon)
|
||||
return false if $Trainer.badge_count >= Settings::NB_BADGES
|
||||
current_max_level = getCurrentLevelCap()
|
||||
return pokemon.level >= current_max_level
|
||||
end
|
||||
|
||||
|
||||
@@ -1626,6 +1626,10 @@ def pbUnfuse(pokemon, scene, supersplicers, pcPosition = nil)
|
||||
end
|
||||
end
|
||||
|
||||
fused_pokemon_learned_moved = pokemon.learned_moves
|
||||
pokemon.learned_moves = fused_pokemon_learned_moved
|
||||
poke2.learned_moves = fused_pokemon_learned_moved
|
||||
|
||||
pokemon.ability_index = pokemon.body_original_ability_index if pokemon.body_original_ability_index
|
||||
poke2.ability_index = pokemon.head_original_ability_index if pokemon.head_original_ability_index
|
||||
|
||||
|
||||
@@ -61,13 +61,16 @@ class Game_Event < Game_Character
|
||||
echoln "MATCH"
|
||||
echoln quest_id
|
||||
return nil if isQuestAlreadyAccepted?(quest_id)
|
||||
|
||||
return quest_id
|
||||
end
|
||||
|
||||
def validateEventIsCompatibleWithIcons(event)
|
||||
return false if event.is_a?(Game_Player)
|
||||
return false if event.erased
|
||||
return false unless pbGetActiveEventPage(event)
|
||||
page = pbGetActiveEventPage(event)
|
||||
return false unless page
|
||||
return false if page.graphic.character_name.empty?
|
||||
return true
|
||||
end
|
||||
|
||||
|
||||
@@ -44,7 +44,7 @@ module Settings
|
||||
AI_ENTRIES_RATE_LOG_FILE = 'Data/pokedex/rate_limit.log' # Path to the log file
|
||||
|
||||
#Spritepack
|
||||
NEWEST_SPRITEPACK_MONTH = 3
|
||||
NEWEST_SPRITEPACK_MONTH = 2
|
||||
NEWEST_SPRITEPACK_YEAR = 2025
|
||||
|
||||
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
@@ -1,4 +1,3 @@
|
||||
0.png
|
||||
1.png
|
||||
10.png
|
||||
100.png
|
||||
@@ -12,7 +11,6 @@
|
||||
100h.png
|
||||
100i.png
|
||||
100j.png
|
||||
100k.png
|
||||
101.png
|
||||
101a.png
|
||||
101b.png
|
||||
@@ -94,7 +92,6 @@
|
||||
108f.png
|
||||
108g.png
|
||||
108h.png
|
||||
108i.png
|
||||
109.png
|
||||
109a.png
|
||||
109b.png
|
||||
@@ -170,6 +167,7 @@
|
||||
115e.png
|
||||
115f.png
|
||||
115g.png
|
||||
115h.png
|
||||
116.png
|
||||
116a.png
|
||||
116b.png
|
||||
@@ -207,7 +205,6 @@
|
||||
11h.png
|
||||
11i.png
|
||||
11j.png
|
||||
11k.png
|
||||
12.png
|
||||
120.png
|
||||
120a.png
|
||||
@@ -237,7 +234,6 @@
|
||||
122g.png
|
||||
122h.png
|
||||
122i.png
|
||||
122j.png
|
||||
123.png
|
||||
123a.png
|
||||
123b.png
|
||||
@@ -402,8 +398,6 @@
|
||||
133v.png
|
||||
133w.png
|
||||
133x.png
|
||||
133y.png
|
||||
133z.png
|
||||
134.png
|
||||
134a.png
|
||||
134b.png
|
||||
@@ -608,7 +602,6 @@
|
||||
146i.png
|
||||
146j.png
|
||||
146k.png
|
||||
146l.png
|
||||
147.png
|
||||
147a.png
|
||||
147b.png
|
||||
@@ -657,12 +650,10 @@
|
||||
14f.png
|
||||
14g.png
|
||||
14h.png
|
||||
14i.png
|
||||
15.png
|
||||
150.png
|
||||
150a.png
|
||||
150aa.png
|
||||
150ab.png
|
||||
150am.png
|
||||
150an.png
|
||||
150b.png
|
||||
@@ -708,9 +699,6 @@
|
||||
151an.png
|
||||
151ao.png
|
||||
151ap.png
|
||||
151aq.png
|
||||
151ar.png
|
||||
151as.png
|
||||
151b.png
|
||||
151c.png
|
||||
151d.png
|
||||
@@ -753,7 +741,6 @@
|
||||
152n.png
|
||||
152o.png
|
||||
152p.png
|
||||
152q.png
|
||||
153.png
|
||||
153a.png
|
||||
153b.png
|
||||
@@ -761,7 +748,6 @@
|
||||
153d.png
|
||||
153e.png
|
||||
153f.png
|
||||
153g.png
|
||||
154.png
|
||||
154a.png
|
||||
154b.png
|
||||
@@ -857,7 +843,6 @@
|
||||
160k.png
|
||||
160l.png
|
||||
160m.png
|
||||
160n.png
|
||||
161.png
|
||||
161a.png
|
||||
161b.png
|
||||
@@ -898,7 +883,6 @@
|
||||
165b.png
|
||||
165c.png
|
||||
165d.png
|
||||
165e.png
|
||||
166.png
|
||||
166a.png
|
||||
166b.png
|
||||
@@ -964,7 +948,8 @@
|
||||
171c.png
|
||||
171d.png
|
||||
171e.png
|
||||
171g.png
|
||||
171f.png
|
||||
171h.png
|
||||
172.png
|
||||
172a.png
|
||||
172b.png
|
||||
@@ -997,7 +982,6 @@
|
||||
173i.png
|
||||
173j.png
|
||||
173k.png
|
||||
173l.png
|
||||
174.png
|
||||
174a.png
|
||||
174b.png
|
||||
@@ -1136,7 +1120,6 @@
|
||||
186r.png
|
||||
186s.png
|
||||
186t.png
|
||||
186u.png
|
||||
187.png
|
||||
187a.png
|
||||
187b.png
|
||||
@@ -1197,7 +1180,6 @@
|
||||
192b.png
|
||||
192c.png
|
||||
192d.png
|
||||
192e.png
|
||||
193.png
|
||||
193a.png
|
||||
193b.png
|
||||
@@ -1210,7 +1192,6 @@
|
||||
194ac.png
|
||||
194ad.png
|
||||
194ae.png
|
||||
194af.png
|
||||
194b.png
|
||||
194c.png
|
||||
194d.png
|
||||
@@ -1438,6 +1419,7 @@
|
||||
203e.png
|
||||
203f.png
|
||||
203g.png
|
||||
203h.png
|
||||
204.png
|
||||
204a.png
|
||||
204b.png
|
||||
@@ -1446,6 +1428,8 @@
|
||||
204e.png
|
||||
204f.png
|
||||
204g.png
|
||||
204h by tinyboo53.png
|
||||
204h.png
|
||||
205.png
|
||||
205a.png
|
||||
205b.png
|
||||
@@ -1465,8 +1449,6 @@
|
||||
206g.png
|
||||
206h.png
|
||||
206i.png
|
||||
206j.png
|
||||
206k.png
|
||||
207.png
|
||||
207a.png
|
||||
207b.png
|
||||
@@ -1486,7 +1468,6 @@
|
||||
208g.png
|
||||
208h.png
|
||||
208i.png
|
||||
208j.png
|
||||
209.png
|
||||
209a.png
|
||||
209b.png
|
||||
@@ -1521,7 +1502,6 @@
|
||||
211b.png
|
||||
211c.png
|
||||
211d.png
|
||||
211e.png
|
||||
212.png
|
||||
212a.png
|
||||
212b.png
|
||||
@@ -1552,7 +1532,6 @@
|
||||
214c.png
|
||||
214d.png
|
||||
214e.png
|
||||
214f.png
|
||||
215.png
|
||||
215a.png
|
||||
215b.png
|
||||
@@ -1632,7 +1611,6 @@
|
||||
222c.png
|
||||
222d.png
|
||||
222e.png
|
||||
222f.png
|
||||
223.png
|
||||
223a.png
|
||||
223b.png
|
||||
@@ -1649,8 +1627,6 @@
|
||||
224g.png
|
||||
224h.png
|
||||
224i.png
|
||||
224j.png
|
||||
224k.png
|
||||
225.png
|
||||
225a.png
|
||||
225b.png
|
||||
@@ -1658,7 +1634,6 @@
|
||||
225d.png
|
||||
225e.png
|
||||
225f.png
|
||||
225g.png
|
||||
226.png
|
||||
226a.png
|
||||
226b.png
|
||||
@@ -1678,8 +1653,6 @@
|
||||
227i.png
|
||||
227j.png
|
||||
227k.png
|
||||
227l.png
|
||||
227m.png
|
||||
228.png
|
||||
228a.png
|
||||
228b.png
|
||||
@@ -1693,6 +1666,7 @@
|
||||
228j.png
|
||||
228k.png
|
||||
228l.png
|
||||
228m.png
|
||||
229.png
|
||||
229a.png
|
||||
229b.png
|
||||
@@ -1797,7 +1771,6 @@
|
||||
236h.png
|
||||
236i.png
|
||||
236j.png
|
||||
236k.png
|
||||
237.png
|
||||
237a.png
|
||||
237b.png
|
||||
@@ -1818,8 +1791,6 @@
|
||||
239c.png
|
||||
239d.png
|
||||
239e.png
|
||||
239f.png
|
||||
239g.png
|
||||
239m.png
|
||||
23a.png
|
||||
23b.png
|
||||
@@ -1877,7 +1848,6 @@
|
||||
243g.png
|
||||
243h.png
|
||||
243i.png
|
||||
243j.png
|
||||
244.png
|
||||
244a.png
|
||||
244b.png
|
||||
@@ -1908,7 +1878,6 @@
|
||||
245n.png
|
||||
245o.png
|
||||
245p.png
|
||||
245q.png
|
||||
246.png
|
||||
246a.png
|
||||
246b.png
|
||||
@@ -1944,8 +1913,6 @@
|
||||
248o.png
|
||||
248p.png
|
||||
248q.png
|
||||
248r.png
|
||||
248s.png
|
||||
249.png
|
||||
249a.png
|
||||
249b.png
|
||||
@@ -1985,7 +1952,6 @@
|
||||
24l.png
|
||||
24m.png
|
||||
24n.png
|
||||
24o.png
|
||||
25.png
|
||||
250.png
|
||||
250a.png
|
||||
@@ -2046,8 +2012,6 @@
|
||||
253e.png
|
||||
253f.png
|
||||
253g.png
|
||||
253h.png
|
||||
253i.png
|
||||
254.png
|
||||
254a.png
|
||||
254b.png
|
||||
@@ -2074,7 +2038,6 @@
|
||||
256b.png
|
||||
256c.png
|
||||
256d.png
|
||||
256e.png
|
||||
257.png
|
||||
257a.png
|
||||
257b.png
|
||||
@@ -2110,12 +2073,9 @@
|
||||
25ac.png
|
||||
25ad.png
|
||||
25ae.png
|
||||
25af.png
|
||||
25ag.png
|
||||
25ah.png
|
||||
25ai.png
|
||||
25aj.png
|
||||
25ak.png
|
||||
25b.png
|
||||
25c.png
|
||||
25d.png
|
||||
@@ -2140,7 +2100,7 @@
|
||||
25w.png
|
||||
25x.png
|
||||
25y.png
|
||||
25z.png
|
||||
25z_temp.png
|
||||
26.png
|
||||
260.png
|
||||
260a.png
|
||||
@@ -2154,7 +2114,6 @@
|
||||
260i.png
|
||||
260j.png
|
||||
260k.png
|
||||
260l.png
|
||||
261.png
|
||||
261a.png
|
||||
261b.png
|
||||
@@ -2203,7 +2162,6 @@
|
||||
266d.png
|
||||
266e.png
|
||||
266f.png
|
||||
266g.png
|
||||
267.png
|
||||
267a.png
|
||||
267b.png
|
||||
@@ -2246,6 +2204,7 @@
|
||||
26n.png
|
||||
26o.png
|
||||
26p.png
|
||||
26w.png
|
||||
27.png
|
||||
270.png
|
||||
270a.png
|
||||
@@ -2301,7 +2260,6 @@
|
||||
273f.png
|
||||
273g.png
|
||||
273h.png
|
||||
273i.png
|
||||
274.png
|
||||
274a.png
|
||||
274b.png
|
||||
@@ -2343,7 +2301,6 @@
|
||||
277h.png
|
||||
277i.png
|
||||
277j.png
|
||||
277k.png
|
||||
278.png
|
||||
278a.png
|
||||
278b.png
|
||||
@@ -2365,9 +2322,6 @@
|
||||
278r.png
|
||||
278s.png
|
||||
278t.png
|
||||
278u.png
|
||||
278v.png
|
||||
278w.png
|
||||
279.png
|
||||
279a.png
|
||||
279b.png
|
||||
@@ -2376,8 +2330,6 @@
|
||||
279e.png
|
||||
279f.png
|
||||
279g.png
|
||||
279h.png
|
||||
279m.png
|
||||
27a.png
|
||||
27aa.png
|
||||
27ab.png
|
||||
@@ -2414,9 +2366,6 @@
|
||||
280b.png
|
||||
280c.png
|
||||
280d.png
|
||||
280e.png
|
||||
280f.png
|
||||
280g.png
|
||||
281.png
|
||||
281a.png
|
||||
281b.png
|
||||
@@ -2503,6 +2452,7 @@
|
||||
286p.png
|
||||
287.png
|
||||
287a.png
|
||||
287aa.png
|
||||
287b.png
|
||||
287c.png
|
||||
287d.png
|
||||
@@ -2564,6 +2514,7 @@
|
||||
28h.png
|
||||
28i.png
|
||||
28j.png
|
||||
28l.png
|
||||
29.png
|
||||
290.png
|
||||
290a.png
|
||||
@@ -2634,6 +2585,7 @@
|
||||
296v.png
|
||||
296w.png
|
||||
296x.png
|
||||
296y.png
|
||||
297.png
|
||||
297a.png
|
||||
297b.png
|
||||
@@ -2650,8 +2602,6 @@
|
||||
298c.png
|
||||
298d.png
|
||||
298e.png
|
||||
298f.png
|
||||
298g.png
|
||||
299.png
|
||||
299a.png
|
||||
299b.png
|
||||
@@ -2663,7 +2613,6 @@
|
||||
299h.png
|
||||
299i.png
|
||||
299j.png
|
||||
299k.png
|
||||
29a.png
|
||||
29b.png
|
||||
29c.png
|
||||
@@ -2688,7 +2637,6 @@
|
||||
2o.png
|
||||
2p.png
|
||||
2q.png
|
||||
2r.png
|
||||
3.png
|
||||
30.png
|
||||
300.png
|
||||
@@ -2716,6 +2664,7 @@
|
||||
301b.png
|
||||
301c.png
|
||||
301d.png
|
||||
301e.png
|
||||
302.png
|
||||
302a.png
|
||||
302b.png
|
||||
@@ -2723,7 +2672,6 @@
|
||||
302d.png
|
||||
302e.png
|
||||
302f.png
|
||||
302g.png
|
||||
303.png
|
||||
303a.png
|
||||
303b.png
|
||||
@@ -2765,8 +2713,6 @@
|
||||
307c.png
|
||||
307d.png
|
||||
307e.png
|
||||
307f.png
|
||||
307g.png
|
||||
308.png
|
||||
308a.png
|
||||
308b.png
|
||||
@@ -2914,7 +2860,6 @@
|
||||
320d.png
|
||||
320e.png
|
||||
320f.png
|
||||
320g.png
|
||||
321.png
|
||||
321a.png
|
||||
321b.png
|
||||
@@ -3004,7 +2949,6 @@
|
||||
329e.png
|
||||
329f.png
|
||||
329g.png
|
||||
329h.png
|
||||
32a.png
|
||||
32b.png
|
||||
32c.png
|
||||
@@ -3068,7 +3012,6 @@
|
||||
333n.png
|
||||
333o.png
|
||||
333p.png
|
||||
333q.png
|
||||
334.png
|
||||
334a.png
|
||||
334b.png
|
||||
@@ -3118,6 +3061,7 @@
|
||||
337d.png
|
||||
337e.png
|
||||
337f.png
|
||||
337g.png
|
||||
338.png
|
||||
338a.png
|
||||
338b.png
|
||||
@@ -3216,7 +3160,6 @@
|
||||
343f.png
|
||||
343g.png
|
||||
343h.png
|
||||
343i.png
|
||||
344.png
|
||||
344a.png
|
||||
344b.png
|
||||
@@ -3235,7 +3178,6 @@
|
||||
345f.png
|
||||
345g.png
|
||||
345h.png
|
||||
345i.png
|
||||
346.png
|
||||
346a.png
|
||||
346b.png
|
||||
@@ -3247,7 +3189,6 @@
|
||||
346h.png
|
||||
346i.png
|
||||
346j.png
|
||||
346k.png
|
||||
347.png
|
||||
347a.png
|
||||
347b.png
|
||||
@@ -3313,8 +3254,6 @@
|
||||
351c.png
|
||||
351d.png
|
||||
351e.png
|
||||
351f.png
|
||||
351g.png
|
||||
352.png
|
||||
352a.png
|
||||
352b.png
|
||||
@@ -3353,8 +3292,6 @@
|
||||
354m.png
|
||||
354n.png
|
||||
354o.png
|
||||
354p.png
|
||||
354q.png
|
||||
355.png
|
||||
355a.png
|
||||
355b.png
|
||||
@@ -3404,7 +3341,6 @@
|
||||
359e.png
|
||||
359f.png
|
||||
359g.png
|
||||
359h.png
|
||||
35a.png
|
||||
35b.png
|
||||
35c.png
|
||||
@@ -3415,7 +3351,6 @@
|
||||
35h.png
|
||||
35i.png
|
||||
35j.png
|
||||
35k.png
|
||||
36.png
|
||||
360.png
|
||||
360a.png
|
||||
@@ -3471,7 +3406,6 @@
|
||||
363f.png
|
||||
363g.png
|
||||
363h.png
|
||||
363i.png
|
||||
364.png
|
||||
364a.png
|
||||
364b.png
|
||||
@@ -3498,7 +3432,6 @@
|
||||
365n.png
|
||||
365o.png
|
||||
365p.png
|
||||
365q.png
|
||||
366.png
|
||||
366a.png
|
||||
366b.png
|
||||
@@ -3527,7 +3460,6 @@
|
||||
368m.png
|
||||
368n.png
|
||||
368o.png
|
||||
368p.png
|
||||
369.png
|
||||
369a.png
|
||||
369b.png
|
||||
@@ -3569,15 +3501,12 @@
|
||||
370i.png
|
||||
370j.png
|
||||
370k.png
|
||||
370l.png
|
||||
370m.png
|
||||
371.png
|
||||
371a.png
|
||||
371b.png
|
||||
371c.png
|
||||
371d.png
|
||||
371e.png
|
||||
371f.png
|
||||
372.png
|
||||
372a.png
|
||||
372b.png
|
||||
@@ -3591,10 +3520,6 @@
|
||||
372j.png
|
||||
372k.png
|
||||
372l.png
|
||||
372m.png
|
||||
372n.png
|
||||
372o.png
|
||||
372p.png
|
||||
373.png
|
||||
373a.png
|
||||
373b.png
|
||||
@@ -3621,7 +3546,6 @@
|
||||
374i.png
|
||||
374j.png
|
||||
374k.png
|
||||
374l.png
|
||||
375.png
|
||||
375a.png
|
||||
375b.png
|
||||
@@ -3660,7 +3584,6 @@
|
||||
378k.png
|
||||
378l.png
|
||||
378m.png
|
||||
378n.png
|
||||
379.png
|
||||
379a.png
|
||||
379b.png
|
||||
@@ -3686,7 +3609,6 @@
|
||||
37i.png
|
||||
37j.png
|
||||
37k.png
|
||||
37l.png
|
||||
37n.png
|
||||
38.png
|
||||
380.png
|
||||
@@ -3773,8 +3695,6 @@
|
||||
386a.png
|
||||
386b.png
|
||||
386c.png
|
||||
386d.png
|
||||
386e.png
|
||||
387.png
|
||||
387a.png
|
||||
387b.png
|
||||
@@ -3873,7 +3793,6 @@
|
||||
393c.png
|
||||
393d.png
|
||||
393e.png
|
||||
393f.png
|
||||
394.png
|
||||
394a.png
|
||||
394b.png
|
||||
@@ -3900,10 +3819,12 @@
|
||||
397b.png
|
||||
397c.png
|
||||
397d.png
|
||||
397e.png
|
||||
398.png
|
||||
398a.png
|
||||
398b.png
|
||||
398c.png
|
||||
398d.png
|
||||
399.png
|
||||
399a.png
|
||||
399b.png
|
||||
@@ -3930,7 +3851,6 @@
|
||||
39n.png
|
||||
39o.png
|
||||
39p.png
|
||||
39q.png
|
||||
3a.png
|
||||
3b.png
|
||||
3c.png
|
||||
@@ -3997,7 +3917,6 @@
|
||||
404d.png
|
||||
404e.png
|
||||
404f.png
|
||||
404g.png
|
||||
405.png
|
||||
405a.png
|
||||
405b.png
|
||||
@@ -4096,7 +4015,6 @@
|
||||
414e.png
|
||||
414f.png
|
||||
414g.png
|
||||
414h.png
|
||||
415.png
|
||||
415a.png
|
||||
415b.png
|
||||
@@ -4299,21 +4217,17 @@
|
||||
430e.png
|
||||
430f.png
|
||||
430g.png
|
||||
430h.png
|
||||
431.png
|
||||
431a.png
|
||||
431b.png
|
||||
431c.png
|
||||
431d.png
|
||||
431e.png
|
||||
431f.png
|
||||
431g.png
|
||||
432.png
|
||||
432a.png
|
||||
432b.png
|
||||
432c.png
|
||||
432d.png
|
||||
432e.png
|
||||
433.png
|
||||
433a.png
|
||||
433b.png
|
||||
@@ -4326,8 +4240,6 @@
|
||||
433i.png
|
||||
433j.png
|
||||
433k.png
|
||||
433l.png
|
||||
433m.png
|
||||
434.png
|
||||
434a.png
|
||||
434b.png
|
||||
@@ -4361,9 +4273,6 @@
|
||||
437j.png
|
||||
437k.png
|
||||
437l.png
|
||||
437m.png
|
||||
437n.png
|
||||
437o.png
|
||||
438.png
|
||||
438a.png
|
||||
438b.png
|
||||
@@ -4600,7 +4509,6 @@
|
||||
455b.png
|
||||
455c.png
|
||||
455d.png
|
||||
455e.png
|
||||
456.png
|
||||
456a.png
|
||||
456b.png
|
||||
@@ -4621,7 +4529,6 @@
|
||||
457c.png
|
||||
457d.png
|
||||
457e.png
|
||||
457f.png
|
||||
458.png
|
||||
458a.png
|
||||
458b.png
|
||||
@@ -4630,7 +4537,6 @@
|
||||
458e.png
|
||||
458f.png
|
||||
458g.png
|
||||
458h.png
|
||||
459.png
|
||||
459a.png
|
||||
459b.png
|
||||
@@ -4679,6 +4585,7 @@
|
||||
462j.png
|
||||
462k.png
|
||||
462l.png
|
||||
462m.png
|
||||
463.png
|
||||
463a.png
|
||||
463b.png
|
||||
@@ -4713,7 +4620,6 @@
|
||||
464n.png
|
||||
464o.png
|
||||
464p.png
|
||||
464q.png
|
||||
465.png
|
||||
465a.png
|
||||
465b.png
|
||||
@@ -4775,12 +4681,12 @@
|
||||
469g.png
|
||||
469h.png
|
||||
469i.png
|
||||
469j.png
|
||||
469k.png
|
||||
469l.png
|
||||
469m.png
|
||||
469n.png
|
||||
469o.png
|
||||
469p.png
|
||||
46a.png
|
||||
46b.png
|
||||
46c.png
|
||||
@@ -4811,8 +4717,6 @@
|
||||
471j.png
|
||||
471k.png
|
||||
471l.png
|
||||
471m.png
|
||||
471n.png
|
||||
472.png
|
||||
472a.png
|
||||
472b.png
|
||||
@@ -4839,12 +4743,9 @@
|
||||
473l.png
|
||||
473m.png
|
||||
473n.png
|
||||
473o.png
|
||||
474.png
|
||||
474a.png
|
||||
474b.png
|
||||
474c.png
|
||||
474d.png
|
||||
475.png
|
||||
475a.png
|
||||
475b.png
|
||||
@@ -4870,7 +4771,6 @@
|
||||
477.png
|
||||
477a.png
|
||||
477aa.png
|
||||
477ab.png
|
||||
477b.png
|
||||
477c.png
|
||||
477d.png
|
||||
@@ -4943,7 +4843,6 @@
|
||||
480c.png
|
||||
480d.png
|
||||
480e.png
|
||||
480f.png
|
||||
481.png
|
||||
481a.png
|
||||
481b.png
|
||||
@@ -4997,22 +4896,17 @@
|
||||
484m.png
|
||||
484n.png
|
||||
484o.png
|
||||
484p.png
|
||||
485.png
|
||||
485a.png
|
||||
485b.png
|
||||
485c.png
|
||||
485d.png
|
||||
485e.png
|
||||
485f.png
|
||||
486.png
|
||||
486a.png
|
||||
486b.png
|
||||
486c.png
|
||||
486d.png
|
||||
486e.png
|
||||
486f.png
|
||||
486g.png
|
||||
487.png
|
||||
487a.png
|
||||
487b.png
|
||||
@@ -5028,9 +4922,6 @@
|
||||
487l.png
|
||||
487m.png
|
||||
487n.png
|
||||
487o.png
|
||||
487p.png
|
||||
487q.png
|
||||
488.png
|
||||
488a.png
|
||||
488b.png
|
||||
@@ -5098,9 +4989,6 @@
|
||||
493i.png
|
||||
493j.png
|
||||
493k.png
|
||||
493l.png
|
||||
493m.png
|
||||
493n.png
|
||||
494.png
|
||||
494a.png
|
||||
494b.png
|
||||
@@ -5112,8 +5000,6 @@
|
||||
494h.png
|
||||
494i.png
|
||||
494j.png
|
||||
494k.png
|
||||
494l.png
|
||||
495.png
|
||||
495a.png
|
||||
495b.png
|
||||
@@ -5141,7 +5027,6 @@
|
||||
497e.png
|
||||
497f.png
|
||||
497g.png
|
||||
497h.png
|
||||
498.png
|
||||
498a.png
|
||||
498b.png
|
||||
@@ -5219,14 +5104,6 @@
|
||||
501p.png
|
||||
501q.png
|
||||
501r.png
|
||||
501s.png
|
||||
501t.png
|
||||
501u.png
|
||||
501v.png
|
||||
501w.png
|
||||
501x.png
|
||||
501y.png
|
||||
501z.png
|
||||
50a.png
|
||||
50b.png
|
||||
50c.png
|
||||
@@ -5241,7 +5118,6 @@
|
||||
51d.png
|
||||
52.png
|
||||
52a.png
|
||||
52aa.png
|
||||
52b.png
|
||||
52c.png
|
||||
52d.png
|
||||
@@ -5332,7 +5208,6 @@
|
||||
55r.png
|
||||
55s.png
|
||||
55t.png
|
||||
55u.png
|
||||
56.png
|
||||
56a.png
|
||||
56b.png
|
||||
@@ -5462,6 +5337,7 @@
|
||||
65i.png
|
||||
65j.png
|
||||
65k.png
|
||||
65l.png
|
||||
66.png
|
||||
66a.png
|
||||
66b.png
|
||||
@@ -5489,7 +5365,6 @@
|
||||
67o.png
|
||||
67p.png
|
||||
67q.png
|
||||
67r.png
|
||||
68.png
|
||||
68a.png
|
||||
68b.png
|
||||
@@ -5522,6 +5397,7 @@
|
||||
6aj.png
|
||||
6ak.png
|
||||
6al.png
|
||||
6am.png
|
||||
6b.png
|
||||
6c.png
|
||||
6d.png
|
||||
@@ -5589,7 +5465,6 @@
|
||||
74c.png
|
||||
74d.png
|
||||
74e.png
|
||||
74f.png
|
||||
75.png
|
||||
75a.png
|
||||
75b.png
|
||||
@@ -5659,7 +5534,6 @@
|
||||
7l.png
|
||||
7m.png
|
||||
7n.png
|
||||
7o.png
|
||||
8.png
|
||||
80.png
|
||||
80a.png
|
||||
@@ -5670,8 +5544,6 @@
|
||||
80f.png
|
||||
80g.png
|
||||
80h.png
|
||||
80i.png
|
||||
80j.png
|
||||
81.png
|
||||
81a.png
|
||||
81b.png
|
||||
@@ -5747,7 +5619,6 @@
|
||||
89j.png
|
||||
89k.png
|
||||
89l.png
|
||||
89m.png
|
||||
8a.png
|
||||
8b.png
|
||||
8c.png
|
||||
@@ -5765,14 +5636,12 @@
|
||||
90d.png
|
||||
90e.png
|
||||
90f.png
|
||||
90g.png
|
||||
91.png
|
||||
91a.png
|
||||
91b.png
|
||||
91c.png
|
||||
91d.png
|
||||
91e.png
|
||||
91f.png
|
||||
92.png
|
||||
92a.png
|
||||
92b.png
|
||||
@@ -5797,7 +5666,6 @@
|
||||
93l.png
|
||||
93m.png
|
||||
93n.png
|
||||
93o.png
|
||||
94.png
|
||||
94a.png
|
||||
94b.png
|
||||
@@ -5821,7 +5689,6 @@
|
||||
94t.png
|
||||
94u.png
|
||||
94v.png
|
||||
94w.png
|
||||
94x.png
|
||||
94y.png
|
||||
95.png
|
||||
@@ -5832,7 +5699,6 @@
|
||||
95e.png
|
||||
95f.png
|
||||
95g.png
|
||||
95h.png
|
||||
96.png
|
||||
96a.png
|
||||
96b.png
|
||||
@@ -5919,8 +5785,6 @@
|
||||
9m.png
|
||||
9n.png
|
||||
9o.png
|
||||
9p.png
|
||||
9q.png
|
||||
BASE_SPRITES
|
||||
c.png
|
||||
desktop.ini
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
2
Game.ini
2
Game.ini
@@ -1,5 +1,5 @@
|
||||
[Game]
|
||||
Library=RGSS104E.dll
|
||||
Library=RGSS100J.dll
|
||||
Scripts=Data\Scripts.rxdata
|
||||
Title=infinitefusion
|
||||
RTP1=
|
||||
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 2.6 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 4.4 KiB After Width: | Height: | Size: 355 B |
Binary file not shown.
|
Before Width: | Height: | Size: 504 KiB After Width: | Height: | Size: 447 KiB |
61
README.md
Normal file
61
README.md
Normal file
@@ -0,0 +1,61 @@
|
||||
## Thank you for downloading Pokémon Infinite Fusion!
|
||||
|
||||
Playing the game
|
||||
---
|
||||
**Windows**
|
||||
|
||||
Use **Game.exe** to play the game. That's it!
|
||||
|
||||
If you are experiencing issues such as long loading times, you can also try Game-performance.exe.
|
||||
|
||||
-----
|
||||
**MacOS / Linux**
|
||||
|
||||
The game is not made to run natively on anything other than Windows. However, it is possible to play it Mac and Linux using Wine or Whiskey.
|
||||
|
||||
Refer to these tutorials:
|
||||
|
||||
[Wine install guide](https://hackmd.io/@PIF-Tech/MacWineGuide)
|
||||
|
||||
[Whiskey install guide](https://hackmd.io/@PIF-Tech/MacWhiskeyGuide)
|
||||
|
||||
|
||||
Once Wine is installed on your computer, you can use "launch-wine.sh" to launch the game.
|
||||
|
||||
---
|
||||
**Android**
|
||||
|
||||
To play Infinite Fusion on Android, you need to use a RPG Maker emulator called [JoiPlay](https://joiplay.net/).
|
||||
|
||||
[Android setup guide](https://hackmd.io/@PIF-Tech/AndroidGuide)
|
||||
|
||||
---
|
||||
## Contributing to the game
|
||||
|
||||
Pokémon Infinite Fusion is open-source! All of the game's code is located in the Data/Scripts folder.
|
||||
|
||||
We accept pull requests for bug fixes and minor features* (Please contact chardub on the game's Discord if you have a feature idea to get it pre-approved before you start working on it!)
|
||||
|
||||
**Note: Any pull request that modifies the RPG Maker files outside of the Scripts folder will be automatically denied.
|
||||
This includes any changes to the maps/game events. The reason for this is that unfortunately, the way RPG Maker XP's data
|
||||
files are structured does not allow to easily see what the changes made are.**
|
||||
|
||||
To contribute:
|
||||
|
||||
- Fork the game's repo from https://github.com/infinitefusion/infinitefusion-e18
|
||||
- Work from the **develop** branch to avoid merge conflicts
|
||||
- Open a pull request once you're done to merge into **develop**. A pull request should only contain a single feature or bug fix. Any PR that bundles multiple features/fixes will be denied.
|
||||
|
||||
**There is no guarantee that submitted pull requests will be accepted.*
|
||||
|
||||
---
|
||||
## Useful links:
|
||||
- [Wiki](https://infinitefusion.fandom.com/)
|
||||
- [Discord](https://discord.gg/infinitefusion)
|
||||
- [Reddit](https://www.reddit.com/r/PokemonInfiniteFusion/)
|
||||
- [Pokecommunity](https://www.pokecommunity.com/showthread.php?t=347883)
|
||||
- [Showdown](http://play.pokeathlon.com)
|
||||
- [Fusion calculator](https://www.fusiondex.org/)
|
||||
|
||||
This is a free-to-play Pokémon fan game. If you paid any amount of money to play this game, you have been scammed.
|
||||
This game is not affiliated with Nintendo, Game Freak or Creatures Inc.
|
||||
16
readme.txt
16
readme.txt
@@ -1,16 +0,0 @@
|
||||
Thank you for downloading Pok?mon Infinite Fusion!
|
||||
|
||||
Use Game.exe to play the game.
|
||||
If you are experiencing issues such as long loading times, you can also try the alternate launcher.
|
||||
|
||||
|
||||
Useful links:
|
||||
Wiki: https://infinitefusion.fandom.com/
|
||||
Discord: https://discord.gg/infinitefusion
|
||||
Reddit: https://www.reddit.com/r/PokemonInfiniteFusion/
|
||||
Pokecommunity https://www.pokecommunity.com/showthread.php?t=347883
|
||||
Showdown play.pokeathlon.com
|
||||
Fusion calculator https://www.fusiondex.org/
|
||||
|
||||
This is a free-to-play Pok?mon fan game. If you paid any amount of money to play this game, you have been scammed.
|
||||
This game is not affiliated with Nintendo, Game Freak or Creatures Inc.
|
||||
Reference in New Issue
Block a user