commit 8508a04f510b40ab5020e46c353b7c7fca323471 Author: Brevven Date: Sun Jul 21 17:16:09 2019 -0700 Initial commit, working Titanium mod diff --git a/LICENSE.md b/LICENSE.md new file mode 100644 index 0000000..c936694 --- /dev/null +++ b/LICENSE.md @@ -0,0 +1,20 @@ +The MIT License (MIT) + +Copyright (c) 2013 Brevven + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..caec8d7 --- /dev/null +++ b/Makefile @@ -0,0 +1,15 @@ + +.PHONY: zip install + +v = bztitanium_$(shell jq -r .version info.json) +copy: + mkdir -p ../$(v) + cp -rf * ../$(v) + rm ../$(v).zip + cd ..; zip -9 -r -y $(v).zip $(v) -x "*.xcf" -x "*.git*" + + +install: copy + cp -f ../$(v).zip ../../mods/ + + diff --git a/README.md b/README.md new file mode 100644 index 0000000..ac8f6b1 --- /dev/null +++ b/README.md @@ -0,0 +1,10 @@ +# Titanium + +Adds titanium ore and plates to the base game. It requires lubricant to mine. +Most recipes that should be lightweight that use steel now use titanium. Other minor recipe tweaks as well. + +Not compatible with RSO yet. + +## Version History + +- 0.1.0 Initial version. No mod compatibility guarantees yet! diff --git a/control.lua b/control.lua new file mode 100644 index 0000000..d3f5a12 --- /dev/null +++ b/control.lua @@ -0,0 +1 @@ + diff --git a/data-final-fixes.lua b/data-final-fixes.lua new file mode 100644 index 0000000..fc4e0c9 --- /dev/null +++ b/data-final-fixes.lua @@ -0,0 +1 @@ +require("titanium-recipe-final") diff --git a/data-updates.lua b/data-updates.lua new file mode 100644 index 0000000..dace4f0 --- /dev/null +++ b/data-updates.lua @@ -0,0 +1 @@ +require("titanium-recipe-updates") diff --git a/data-util.lua b/data-util.lua new file mode 100644 index 0000000..59ba1a5 --- /dev/null +++ b/data-util.lua @@ -0,0 +1,25 @@ +local data_util = {} + +--- Add a given quantity of titanium plates to a given recipe +function data_util.add_titanium_ingredient(quantity, recipe) + table.insert(recipe.ingredients, {"titanium-plate", quantity}) +end + +--- Add titanium processing as a prerequisite to a given technology +function data_util.add_titanium_prerequisite(technology) + table.insert(technology.prerequisites, "titanium-processing") +end + +--- Change all occurances of steel plates to titanium plates in a given recipe +function data_util.steel_to_titanium(recipe) + if recipe ~= nil and recipe.ingredients ~= nil then + for i, ingredient in pairs(recipe.ingredients) do + -- For final fixes + if ingredient.name == "steel-plate" then ingredient.name = "titanium-plate" end + -- For updates + if ingredient[1] == "steel-plate" then ingredient[1] = "titanium-plate" end + end + end +end + +return data_util diff --git a/data.lua b/data.lua new file mode 100644 index 0000000..a351ac3 --- /dev/null +++ b/data.lua @@ -0,0 +1,4 @@ +require("titanium-ore") +require("titanium-ore-particle") +require("titanium-recipe") + diff --git a/graphics/entity/ores/hr-titanium-ore.png b/graphics/entity/ores/hr-titanium-ore.png new file mode 100644 index 0000000..e2a7481 Binary files /dev/null and b/graphics/entity/ores/hr-titanium-ore.png differ diff --git a/graphics/entity/ores/hr-titanium-ore.xcf b/graphics/entity/ores/hr-titanium-ore.xcf new file mode 100644 index 0000000..7740e0c Binary files /dev/null and b/graphics/entity/ores/hr-titanium-ore.xcf differ diff --git a/graphics/entity/ores/titanium-ore-particle-4.png b/graphics/entity/ores/titanium-ore-particle-4.png new file mode 100644 index 0000000..8af0525 Binary files /dev/null and b/graphics/entity/ores/titanium-ore-particle-4.png differ diff --git a/graphics/entity/ores/titanium-ore.png b/graphics/entity/ores/titanium-ore.png new file mode 100644 index 0000000..2c23647 Binary files /dev/null and b/graphics/entity/ores/titanium-ore.png differ diff --git a/graphics/entity/ores/titanium-ore.xcf b/graphics/entity/ores/titanium-ore.xcf new file mode 100644 index 0000000..c51f3ff Binary files /dev/null and b/graphics/entity/ores/titanium-ore.xcf differ diff --git a/graphics/entity/titanium-ore-particle/hr-titanium-ore-particle-1.png b/graphics/entity/titanium-ore-particle/hr-titanium-ore-particle-1.png new file mode 100644 index 0000000..55bd024 Binary files /dev/null and b/graphics/entity/titanium-ore-particle/hr-titanium-ore-particle-1.png differ diff --git a/graphics/entity/titanium-ore-particle/hr-titanium-ore-particle-2.png b/graphics/entity/titanium-ore-particle/hr-titanium-ore-particle-2.png new file mode 100644 index 0000000..769bb73 Binary files /dev/null and b/graphics/entity/titanium-ore-particle/hr-titanium-ore-particle-2.png differ diff --git a/graphics/entity/titanium-ore-particle/hr-titanium-ore-particle-3.png b/graphics/entity/titanium-ore-particle/hr-titanium-ore-particle-3.png new file mode 100644 index 0000000..95b8b01 Binary files /dev/null and b/graphics/entity/titanium-ore-particle/hr-titanium-ore-particle-3.png differ diff --git a/graphics/entity/titanium-ore-particle/hr-titanium-ore-particle-4.png b/graphics/entity/titanium-ore-particle/hr-titanium-ore-particle-4.png new file mode 100644 index 0000000..a14a83c Binary files /dev/null and b/graphics/entity/titanium-ore-particle/hr-titanium-ore-particle-4.png differ diff --git a/graphics/entity/titanium-ore-particle/hr-titanium-ore-particle-shadow-1.png b/graphics/entity/titanium-ore-particle/hr-titanium-ore-particle-shadow-1.png new file mode 100644 index 0000000..ebef3b3 Binary files /dev/null and b/graphics/entity/titanium-ore-particle/hr-titanium-ore-particle-shadow-1.png differ diff --git a/graphics/entity/titanium-ore-particle/hr-titanium-ore-particle-shadow-2.png b/graphics/entity/titanium-ore-particle/hr-titanium-ore-particle-shadow-2.png new file mode 100644 index 0000000..b9fc4f5 Binary files /dev/null and b/graphics/entity/titanium-ore-particle/hr-titanium-ore-particle-shadow-2.png differ diff --git a/graphics/entity/titanium-ore-particle/hr-titanium-ore-particle-shadow-3.png b/graphics/entity/titanium-ore-particle/hr-titanium-ore-particle-shadow-3.png new file mode 100644 index 0000000..a3b24e4 Binary files /dev/null and b/graphics/entity/titanium-ore-particle/hr-titanium-ore-particle-shadow-3.png differ diff --git a/graphics/entity/titanium-ore-particle/hr-titanium-ore-particle-shadow-4.png b/graphics/entity/titanium-ore-particle/hr-titanium-ore-particle-shadow-4.png new file mode 100644 index 0000000..48315a2 Binary files /dev/null and b/graphics/entity/titanium-ore-particle/hr-titanium-ore-particle-shadow-4.png differ diff --git a/graphics/entity/titanium-ore-particle/titanium-ore-particle-1.png b/graphics/entity/titanium-ore-particle/titanium-ore-particle-1.png new file mode 100644 index 0000000..38de1b7 Binary files /dev/null and b/graphics/entity/titanium-ore-particle/titanium-ore-particle-1.png differ diff --git a/graphics/entity/titanium-ore-particle/titanium-ore-particle-2.png b/graphics/entity/titanium-ore-particle/titanium-ore-particle-2.png new file mode 100644 index 0000000..24de07c Binary files /dev/null and b/graphics/entity/titanium-ore-particle/titanium-ore-particle-2.png differ diff --git a/graphics/entity/titanium-ore-particle/titanium-ore-particle-3.png b/graphics/entity/titanium-ore-particle/titanium-ore-particle-3.png new file mode 100644 index 0000000..c66eaed Binary files /dev/null and b/graphics/entity/titanium-ore-particle/titanium-ore-particle-3.png differ diff --git a/graphics/entity/titanium-ore-particle/titanium-ore-particle-4.png b/graphics/entity/titanium-ore-particle/titanium-ore-particle-4.png new file mode 100644 index 0000000..1695d15 Binary files /dev/null and b/graphics/entity/titanium-ore-particle/titanium-ore-particle-4.png differ diff --git a/graphics/entity/titanium-ore-particle/titanium-ore-particle-shadow-1.png b/graphics/entity/titanium-ore-particle/titanium-ore-particle-shadow-1.png new file mode 100644 index 0000000..89bfee9 Binary files /dev/null and b/graphics/entity/titanium-ore-particle/titanium-ore-particle-shadow-1.png differ diff --git a/graphics/entity/titanium-ore-particle/titanium-ore-particle-shadow-2.png b/graphics/entity/titanium-ore-particle/titanium-ore-particle-shadow-2.png new file mode 100644 index 0000000..7834934 Binary files /dev/null and b/graphics/entity/titanium-ore-particle/titanium-ore-particle-shadow-2.png differ diff --git a/graphics/entity/titanium-ore-particle/titanium-ore-particle-shadow-3.png b/graphics/entity/titanium-ore-particle/titanium-ore-particle-shadow-3.png new file mode 100644 index 0000000..6ef2544 Binary files /dev/null and b/graphics/entity/titanium-ore-particle/titanium-ore-particle-shadow-3.png differ diff --git a/graphics/entity/titanium-ore-particle/titanium-ore-particle-shadow-4.png b/graphics/entity/titanium-ore-particle/titanium-ore-particle-shadow-4.png new file mode 100644 index 0000000..a8aa006 Binary files /dev/null and b/graphics/entity/titanium-ore-particle/titanium-ore-particle-shadow-4.png differ diff --git a/graphics/icons/hr-titanium-ore.png b/graphics/icons/hr-titanium-ore.png new file mode 100644 index 0000000..40d4bc7 Binary files /dev/null and b/graphics/icons/hr-titanium-ore.png differ diff --git a/graphics/icons/titanium-ore.png b/graphics/icons/titanium-ore.png new file mode 100644 index 0000000..40d4bc7 Binary files /dev/null and b/graphics/icons/titanium-ore.png differ diff --git a/graphics/icons/titanium-ore.xcf b/graphics/icons/titanium-ore.xcf new file mode 100644 index 0000000..4427743 Binary files /dev/null and b/graphics/icons/titanium-ore.xcf differ diff --git a/graphics/icons/titanium-plate.png b/graphics/icons/titanium-plate.png new file mode 100644 index 0000000..aba7eea Binary files /dev/null and b/graphics/icons/titanium-plate.png differ diff --git a/graphics/icons/titanium-plate.xcf b/graphics/icons/titanium-plate.xcf new file mode 100644 index 0000000..b8f17d1 Binary files /dev/null and b/graphics/icons/titanium-plate.xcf differ diff --git a/graphics/icons/titanium-processing.png b/graphics/icons/titanium-processing.png new file mode 100644 index 0000000..f37ae04 Binary files /dev/null and b/graphics/icons/titanium-processing.png differ diff --git a/graphics/icons/titanium-processing.xcf b/graphics/icons/titanium-processing.xcf new file mode 100644 index 0000000..8f6fa9e Binary files /dev/null and b/graphics/icons/titanium-processing.xcf differ diff --git a/info.json b/info.json new file mode 100644 index 0000000..502e9ee --- /dev/null +++ b/info.json @@ -0,0 +1,15 @@ +{ + "name": "bztitanium", + "version": "0.1.0", + "factorio_version": "0.17", + "title": "Titanium", + "author": "Brevven", + "contact": "", + "homepage": "", + "dependencies": [ + "base >= 0.17", + "? aai-industry", + "? space-exploration" + ], + "description": "Adds titanium to the base game" +} diff --git a/locale/en/ore-refining.cfg b/locale/en/ore-refining.cfg new file mode 100644 index 0000000..8bcb77b --- /dev/null +++ b/locale/en/ore-refining.cfg @@ -0,0 +1,19 @@ +[entity-name] +titanium-ore=Titanium + +[autoplace-control-names] +titanium-ore=Titanium Ore + + +[item-name] +titanium-ore=Titanium Ore +titanium-plate=Titanium Plate + + + +[item-description] +titanium-ore=Can be smelted into titanium plates + +[technology-name] +titanium-processing=Titanium Processing + diff --git a/thumbnail.png b/thumbnail.png new file mode 100644 index 0000000..a778f4c Binary files /dev/null and b/thumbnail.png differ diff --git a/titanium-ore-particle.lua b/titanium-ore-particle.lua new file mode 100644 index 0000000..9331720 --- /dev/null +++ b/titanium-ore-particle.lua @@ -0,0 +1,144 @@ +data:extend( +{ + { + type = "particle", + name = "titanium-ore-particle", + flags = {"not-on-map"}, + life_time = 180, + pictures = + { + { + filename = "__bztitanium__/graphics/entity/titanium-ore-particle/titanium-ore-particle-1.png", + priority = "extra-high", + width = 16, + height = 16, + frame_count = 1, + hr_version = + { + filename = "__bztitanium__/graphics/entity/titanium-ore-particle/hr-titanium-ore-particle-1.png", + priority = "extra-high", + width = 32, + height = 32, + frame_count = 1, + scale = 0.5 + } + }, + { + filename = "__bztitanium__/graphics/entity/titanium-ore-particle/titanium-ore-particle-2.png", + priority = "extra-high", + width = 16, + height = 16, + frame_count = 1, + hr_version = + { + filename = "__bztitanium__/graphics/entity/titanium-ore-particle/hr-titanium-ore-particle-2.png", + priority = "extra-high", + width = 32, + height = 32, + frame_count = 1, + scale = 0.5 + } + }, + { + filename = "__bztitanium__/graphics/entity/titanium-ore-particle/titanium-ore-particle-3.png", + priority = "extra-high", + width = 16, + height = 16, + frame_count = 1, + hr_version = + { + filename = "__bztitanium__/graphics/entity/titanium-ore-particle/hr-titanium-ore-particle-3.png", + priority = "extra-high", + width = 32, + height = 32, + frame_count = 1, + scale = 0.5 + } + }, + { + filename = "__bztitanium__/graphics/entity/titanium-ore-particle/titanium-ore-particle-4.png", + priority = "extra-high", + width = 16, + height = 16, + frame_count = 1, + hr_version = + { + filename = "__bztitanium__/graphics/entity/titanium-ore-particle/hr-titanium-ore-particle-4.png", + priority = "extra-high", + width = 32, + height = 32, + frame_count = 1, + scale = 0.5 + } + } + }, + shadows = + { + { + filename = "__bztitanium__/graphics/entity/titanium-ore-particle/titanium-ore-particle-shadow-1.png", + priority = "extra-high", + width = 16, + height = 16, + frame_count = 1, + hr_version = + { + filename = "__bztitanium__/graphics/entity/titanium-ore-particle/hr-titanium-ore-particle-shadow-1.png", + priority = "extra-high", + width = 32, + height = 32, + frame_count = 1, + scale = 0.5 + } + }, + { + filename = "__bztitanium__/graphics/entity/titanium-ore-particle/titanium-ore-particle-shadow-2.png", + priority = "extra-high", + width = 16, + height = 16, + frame_count = 1, + hr_version = + { + filename = "__bztitanium__/graphics/entity/titanium-ore-particle/hr-titanium-ore-particle-shadow-2.png", + priority = "extra-high", + width = 32, + height = 32, + frame_count = 1, + scale = 0.5 + } + }, + { + filename = "__bztitanium__/graphics/entity/titanium-ore-particle/titanium-ore-particle-shadow-3.png", + priority = "extra-high", + width = 16, + height = 16, + frame_count = 1, + hr_version = + { + filename = "__bztitanium__/graphics/entity/titanium-ore-particle/hr-titanium-ore-particle-shadow-3.png", + priority = "extra-high", + width = 32, + height = 32, + frame_count = 1, + scale = 0.5 + } + }, + { + filename = "__bztitanium__/graphics/entity/titanium-ore-particle/titanium-ore-particle-shadow-4.png", + priority = "extra-high", + width = 16, + height = 16, + frame_count = 1, + hr_version = + { + filename = "__bztitanium__/graphics/entity/titanium-ore-particle/hr-titanium-ore-particle-shadow-4.png", + priority = "extra-high", + width = 32, + height = 32, + frame_count = 1, + scale = 0.5 + } + } + } + } +} +) diff --git a/titanium-ore.lua b/titanium-ore.lua new file mode 100644 index 0000000..5d603d6 --- /dev/null +++ b/titanium-ore.lua @@ -0,0 +1,79 @@ +local resource_autoplace = require('resource-autoplace'); + +data:extend( +{ + { + type = "autoplace-control", + category = "resource", + name = "titanium-ore", + richness = true, + order = "b-e" + }, + { + type = "noise-layer", + name = "titanium-ore" + }, + { + type = "resource", + icon_size = 32, + name = "titanium-ore", + icon = "__bztitanium__/graphics/icons/titanium-ore.png", + flags = {"placeable-neutral"}, + order="a-b-a", + map_color = {r=0.65, g=0.80, b=0.80}, + minable = + { + hardness = 1, + mining_particle = "titanium-ore-particle", + mining_time = 2, + fluid_amount=10, + required_fluid= "lubricant", + result = "titanium-ore" + }, + collision_box = {{ -0.1, -0.1}, {0.1, 0.1}}, + selection_box = {{ -0.5, -0.5}, {0.5, 0.5}}, + + autoplace = resource_autoplace.resource_autoplace_settings{ + name = "titanium-ore", + order = "b-z", + base_density = 6, + has_starting_area_placement = false, + random_spot_size_minimum = 1, + random_spot_size_maximum = 3, + regular_rq_factor_multiplier = 1 + }, + + stage_counts = {15000, 9500, 5500, 2900, 1300, 400, 150, 80}, + stages = + { + sheet = + { + filename = "__bztitanium__/graphics/entity/ores/titanium-ore.png", + priority = "extra-high", + size = 64, + frame_count = 8, + variation_count = 8, + hr_version = + { + filename = "__bztitanium__/graphics/entity/ores/hr-titanium-ore.png", + priority = "extra-high", + size = 128, + frame_count = 8, + variation_count = 8, + scale = 0.5 + } + } + }, + }, +{ + type = "item", + name = "titanium-ore", + icon_size = 32, + icon = "__bztitanium__/graphics/icons/titanium-ore.png", + subgroup = "raw-resource", + order = "t-c-a", + stack_size = 50 +}, +} +) + diff --git a/titanium-processing.xcf b/titanium-processing.xcf new file mode 100644 index 0000000..bde0463 Binary files /dev/null and b/titanium-processing.xcf differ diff --git a/titanium-recipe-final.lua b/titanium-recipe-final.lua new file mode 100644 index 0000000..4fb13e9 --- /dev/null +++ b/titanium-recipe-final.lua @@ -0,0 +1,32 @@ +-- Titanium recipe & tech changes +-- These are in "final" for compatibility with other mods such as Space Exploration and AAI + +local util = require("__bztitanium__.data-util"); + +util.steel_to_titanium(data.raw.recipe["low-density-structure"]) +util.steel_to_titanium(data.raw.recipe["low-density-structure"].normal) +util.steel_to_titanium(data.raw.recipe["low-density-structure"].expensive) +util.add_titanium_prerequisite(data.raw.technology["low-density-structure"]) + +util.steel_to_titanium(data.raw.recipe["flying-robot-frame"]) +util.steel_to_titanium(data.raw.recipe["flying-robot-frame"].normal) +util.steel_to_titanium(data.raw.recipe["flying-robot-frame"].expensive) + +util.add_titanium_prerequisite(data.raw.technology["robotics"]) + +-- Additions for Space Exploration mod. +if data.raw.recipe["se-space-pipe"] then + util.steel_to_titanium(data.raw.recipe["se-space-pipe"]) + util.steel_to_titanium(data.raw.recipe["se-space-pipe"].normal) + util.steel_to_titanium(data.raw.recipe["se-space-pipe"].expensive) + util.steel_to_titanium(data.raw.recipe["se-space-transport-belt"]) + util.steel_to_titanium(data.raw.recipe["se-space-transport-belt"].normal) + util.steel_to_titanium(data.raw.recipe["se-space-transport-belt"].expensive) + util.steel_to_titanium(data.raw.recipe["se-space-underground-belt"]) + util.steel_to_titanium(data.raw.recipe["se-space-underground-belt"].normal) + util.steel_to_titanium(data.raw.recipe["se-space-underground-belt"].expensive) + util.steel_to_titanium(data.raw.recipe["se-space-splitter"]) + util.steel_to_titanium(data.raw.recipe["se-space-splitter"].normal) + util.steel_to_titanium(data.raw.recipe["se-space-splitter"].expensive) + util.add_titanium_prerequisite(data.raw.technology["se-space-platform-scaffold"]) +end diff --git a/titanium-recipe-updates.lua b/titanium-recipe-updates.lua new file mode 100644 index 0000000..ec9bb55 --- /dev/null +++ b/titanium-recipe-updates.lua @@ -0,0 +1,21 @@ +-- Titanium recipe & tech changes +-- +local util = require("__bztitanium__.data-util"); + +util.steel_to_titanium(data.raw.recipe["power-armor"]) +util.add_titanium_prerequisite(data.raw.technology["power-armor"]) + +-- All equipment that uses steel now uses titanium. Who wants to carry around steel! +for name, recipe in pairs(data.raw.recipe) do + if recipe.result ~= nil and recipe.result:find("equipment") then + util.steel_to_titanium(recipe) + end +end +-- Generally, steel-based equipment techs require solar panel tech, so only require +-- titanium processing for that. +util.add_titanium_prerequisite(data.raw.technology["solar-panel-equipment"]) + + +-- Also add titanium to steam turbines +util.add_titanium_ingredient(20, data.raw.recipe["steam-turbine"]) +util.add_titanium_prerequisite(data.raw.technology["nuclear-power"]) diff --git a/titanium-recipe.lua b/titanium-recipe.lua new file mode 100644 index 0000000..72d1d69 --- /dev/null +++ b/titanium-recipe.lua @@ -0,0 +1,60 @@ +-- Titanium smelting +data:extend( +{ + { + type = "recipe", + name = "titanium-plate", + category = "smelting", + normal = + { + enabled = false, + energy_required = 8, + ingredients = {{"titanium-ore", 5}}, + result = "titanium-plate" + }, + expensive = + { + enabled = false, + energy_required = 16, + ingredients = {{"titanium-ore", 10}}, + result = "titanium-plate" + } + }, + { + type = "item", + name = "titanium-plate", + icon = "__bztitanium__/graphics/icons/titanium-plate.png", + icon_size = 32, + subgroup = "raw-material", + order = "b[titanium-plate]", + stack_size = 100 + }, + { + type = "technology", + name = "titanium-processing", + icon_size = 128, + icon = "__bztitanium__/graphics/icons/titanium-processing.png", + effects = + { + { + type = "unlock-recipe", + recipe = "titanium-plate" + } + }, + unit = + { + count = 75, + ingredients = + { + {"automation-science-pack", 1}, + {"logistic-science-pack", 1} + }, + time = 30 + }, + prerequisites = {"lubricant"}, + order = "b-b" + }, +} +) + + diff --git a/titanium-thumbnail.xcf b/titanium-thumbnail.xcf new file mode 100644 index 0000000..8f6fa9e Binary files /dev/null and b/titanium-thumbnail.xcf differ