Comparar comentimentos
15 Cometimentos
nalc-1.0
...
f19d57f6fc
Autor(a) | SHA1 | Data | |
---|---|---|---|
f19d57f6fc | |||
|
e85417b180 | ||
d3e5dadbba | |||
5a5085f874 | |||
|
64c39ef239 | ||
|
2a44879f1a | ||
|
c83d07419c | ||
2a99d10056 | |||
|
ee9e651ba3 | ||
|
688c822137 | ||
|
2eb77818c1 | ||
|
f9348593aa | ||
|
388f1c2853 | ||
|
513569cd42 | ||
|
46d1ead160 |
13
.github/workflows/luacheck.yml
externo
Ficheiro normal
@@ -0,0 +1,13 @@
|
||||
name: luacheck
|
||||
on: [push, pull_request]
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@main
|
||||
- name: apt
|
||||
run: sudo apt-get install -y luarocks
|
||||
- name: luacheck install
|
||||
run: luarocks install --local luacheck
|
||||
- name: luacheck run
|
||||
run: $HOME/.luarocks/bin/luacheck ./
|
10
.gitignore
externo
@@ -1,10 +0,0 @@
|
||||
## Generic ignorable patterns and files
|
||||
*~
|
||||
.*.swp
|
||||
*bak*
|
||||
tags
|
||||
*.vim
|
||||
|
||||
## Eclipse project files & directories
|
||||
.project
|
||||
.settings
|
4
.luacheckrc
Ficheiro normal
@@ -0,0 +1,4 @@
|
||||
globals = {
|
||||
"armor",
|
||||
"minetest",
|
||||
}
|
@@ -1,7 +1,4 @@
|
||||
[mod] Technic Armor [technic_armor]
|
||||
===================================
|
||||
|
||||
License Source Code: Copyright (C) 2013-2018 Stuart Jones - LGPL v2.1
|
||||
|
||||
License Textures: poet.nohit and numberZero - 2015-2018 WTFPL
|
||||
License Textures: poet-nohit and numberZero - 2015-2018 WTFPL
|
||||
|
||||
|
9
README.md
Ficheiro normal
@@ -0,0 +1,9 @@
|
||||
# Technic Armor [technic_armor]
|
||||
|
||||
[](https://github.com/mt-mods/technic_armor/actions)
|
||||
|
||||
Adds armor made from lead, brass, cast iron, carbon steel, stainless steel, tin and silver.
|
||||
|
||||

|
||||
|
||||
Textures by @poet-nohit and @numberZero
|
@@ -1,9 +0,0 @@
|
||||
[mod] Technic Armor [technic_armor]
|
||||
===================================
|
||||
|
||||
Adds tin, silver and technic materials to 3d_armor.
|
||||
Requires technic (technic_worldgen at least) mod.
|
||||
|
||||
Depends: 3d_armor, technic_worldgen
|
||||
|
||||
Textures by poet.nohit and numberZero
|
@@ -1,3 +0,0 @@
|
||||
3d_armor
|
||||
technic_worldgen?
|
||||
moreores?
|
@@ -1 +0,0 @@
|
||||
Adds tin, silver and technic materials to 3d_armor.
|
170
init.lua
@@ -1,66 +1,148 @@
|
||||
-- support for i18n
|
||||
local S = armor_i18n.gettext
|
||||
local F = armor_i18n.fgettext
|
||||
-- Use 3d_armor translator to take advantage of existing translations for armor parts
|
||||
local S = minetest.get_translator("3d_armor")
|
||||
|
||||
if not minetest.get_modpath("technic_worldgen") then
|
||||
minetest.log("warning", S("technic_armor: Mod loaded but unused."))
|
||||
return
|
||||
local materials = {}
|
||||
|
||||
if minetest.get_modpath("technic_worldgen") then
|
||||
materials.lead = {
|
||||
name = S("Lead"),
|
||||
craft_item = "technic:lead_ingot",
|
||||
armor = 1.6,
|
||||
heal = 0,
|
||||
use = 500,
|
||||
radiation = 88
|
||||
}
|
||||
materials.brass = {
|
||||
name = S("Brass"),
|
||||
craft_item = "technic:brass_ingot",
|
||||
armor = 1.8,
|
||||
heal = 0,
|
||||
use = 650,
|
||||
radiation = 43
|
||||
}
|
||||
materials.cast = {
|
||||
name = S("Cast Iron"),
|
||||
craft_item = "technic:cast_iron_ingot",
|
||||
armor = 2.5,
|
||||
heal = 8,
|
||||
use = 200,
|
||||
radiation = 40
|
||||
}
|
||||
materials.carbon = {
|
||||
name = S("Carbon Steel"),
|
||||
craft_item = "technic:carbon_steel_ingot",
|
||||
armor = 2.7,
|
||||
heal = 10,
|
||||
use = 100,
|
||||
radiation = 40
|
||||
}
|
||||
materials.stainless = {
|
||||
name = S("Stainless Steel"),
|
||||
craft_item = "technic:stainless_steel_ingot",
|
||||
armor = 2.7,
|
||||
heal = 10,
|
||||
use = 75,
|
||||
radiation = 40
|
||||
}
|
||||
end
|
||||
|
||||
local tin_ingot
|
||||
|
||||
if minetest.registered_items["default:tin_ingot"] then
|
||||
tin_ingot = "default:tin_ingot"
|
||||
end
|
||||
|
||||
local stats = {
|
||||
lead = { name=S("Lead"), material="technic:lead_ingot", armor=1.6, heal=0, use=500, radiation=80*1.1 },
|
||||
brass = { name=S("Brass"), material="technic:brass_ingot", armor=1.8, heal=0, use=650, radiation=43 },
|
||||
cast = { name=S("Cast Iron"), material="technic:cast_iron_ingot", armor=2.5, heal=8, use=200, radiation=40 },
|
||||
carbon = { name=S("Carbon Steel"), material="technic:carbon_steel_ingot", armor=2.7, heal=10, use=100, radiation=40 },
|
||||
stainless = { name=S("Stainless Steel"), material="technic:stainless_steel_ingot", armor=2.7, heal=10, use=75, radiation=40 },
|
||||
}
|
||||
if minetest.get_modpath("moreores") then
|
||||
stats.tin = { name=S("Tin"), material="moreores:tin_ingot", armor=1.6, heal=0, use=750, radiation=37 }
|
||||
stats.silver = { name=S("Silver"), material="moreores:silver_ingot", armor=1.8, heal=6, use=650, radiation=53 }
|
||||
tin_ingot = "moreores:tin_ingot"
|
||||
materials.silver = {
|
||||
name = S("Silver"),
|
||||
craft_item = "moreores:silver_ingot",
|
||||
armor = 1.8,
|
||||
heal = 6,
|
||||
use = 650,
|
||||
radiation = 53
|
||||
}
|
||||
end
|
||||
|
||||
if tin_ingot then
|
||||
materials.tin = {
|
||||
name = S("Tin"),
|
||||
craft_item = tin_ingot,
|
||||
armor = 1.6,
|
||||
heal = 0,
|
||||
use = 750,
|
||||
radiation = 37
|
||||
}
|
||||
end
|
||||
|
||||
local parts = {
|
||||
helmet = { place="head", name=S("Helmet"), level=5, radlevel = 0.10, craft={{1,1,1},{1,0,1}} },
|
||||
chestplate = { place="torso", name=S("Chestplate"), level=8, radlevel = 0.35, craft={{1,0,1},{1,1,1},{1,1,1}} },
|
||||
leggings = { place="legs", name=S("Leggings"), level=7, radlevel = 0.15, craft={{1,1,1},{1,0,1},{1,0,1}} },
|
||||
boots = { place="feet", name=S("Boots"), level=4, radlevel = 0.10, craft={{1,0,1},{1,0,1}} },
|
||||
helmet = {
|
||||
name = S("Helmet"),
|
||||
place = "head",
|
||||
level = 5,
|
||||
radlevel = 0.10,
|
||||
craft = {{1, 1, 1}, {1, 0, 1}}
|
||||
},
|
||||
chestplate = {
|
||||
name = S("Chestplate"),
|
||||
place = "torso",
|
||||
level = 8,
|
||||
radlevel = 0.35,
|
||||
craft = {{1, 0, 1}, {1, 1, 1}, {1, 1, 1}}
|
||||
},
|
||||
leggings = {
|
||||
name = S("Leggings"),
|
||||
place = "legs",
|
||||
level = 7,
|
||||
radlevel = 0.15,
|
||||
craft = {{1, 1, 1}, {1, 0, 1}, {1, 0, 1}}
|
||||
},
|
||||
boots = {
|
||||
name = S("Boots"),
|
||||
place = "feet",
|
||||
level = 4,
|
||||
radlevel = 0.10,
|
||||
craft = {{1, 0, 1}, {1, 0, 1}}
|
||||
}
|
||||
}
|
||||
|
||||
if minetest.get_modpath("shields") then
|
||||
parts.shield = { place="shield", name=S("Shield"), level=5, radlevel=0.00, craft={{1,1,1},{1,1,1},{0,1,0}} }
|
||||
parts.shield = {
|
||||
name = S("Shield"),
|
||||
place = "shield",
|
||||
level = 5,
|
||||
radlevel = 0.00,
|
||||
craft = {{1, 1, 1}, {1, 1, 1}, {0, 1, 0}}
|
||||
}
|
||||
end
|
||||
|
||||
-- Makes a craft recipe based on a template
|
||||
-- template is a recipe-like table but indices are used instead of actual item names:
|
||||
-- 0 means nothing, everything else is treated as an index in the materials table
|
||||
local function make_recipe(template, materials)
|
||||
local function make_recipe(template, material)
|
||||
local recipe = {}
|
||||
for j, trow in ipairs(template) do
|
||||
local rrow = {}
|
||||
for i, tcell in ipairs(trow) do
|
||||
if tcell == 0 then
|
||||
rrow[i] = ""
|
||||
else
|
||||
rrow[i] = materials[tcell]
|
||||
end
|
||||
for i, row in ipairs(template) do
|
||||
recipe[i] = {}
|
||||
for j, item in ipairs(row) do
|
||||
recipe[i][j] = item == 0 and "" or material
|
||||
end
|
||||
recipe[j] = rrow
|
||||
end
|
||||
return recipe
|
||||
end
|
||||
|
||||
for key, armor in pairs(stats) do
|
||||
for partkey, part in pairs(parts) do
|
||||
local partname = "technic_armor:"..partkey.."_"..key
|
||||
minetest.register_tool(partname, {
|
||||
-- Translators: @1 stands for material and @2 for part of the armor, so that you could use a conjunction if in your language part name comes first then material (e.g. in french 'Silver Boots' is translated in 'Bottes en argent' by using '@2 en @1' as translated string)
|
||||
description = S("@1 @2", armor.name, part.name),
|
||||
inventory_image = "technic_armor_inv_"..partkey.."_"..key..".png",
|
||||
groups = {["armor_"..part.place]=math.floor(part.level*armor.armor), armor_heal=armor.heal, armor_use=armor.use, armor_radiation=math.floor(part.radlevel*armor.radiation)},
|
||||
wear = 0,
|
||||
for material, m in pairs(materials) do
|
||||
for part, p in pairs(parts) do
|
||||
local name = "technic_armor:"..part.."_"..material
|
||||
armor:register_armor(name, {
|
||||
description = S("@1 @2", m.name, p.name),
|
||||
inventory_image = "technic_armor_inv_"..part.."_"..material..".png",
|
||||
groups = {
|
||||
["armor_"..p.place] = math.floor(p.level * m.armor),
|
||||
armor_heal = m.heal,
|
||||
armor_use = m.use,
|
||||
},
|
||||
armor_groups = { radiation = math.floor(p.radlevel * m.radiation)},
|
||||
})
|
||||
minetest.register_craft({
|
||||
output = partname,
|
||||
recipe = make_recipe(part.craft, {armor.material}),
|
||||
output = name,
|
||||
recipe = make_recipe(p.craft, m.craft_item),
|
||||
})
|
||||
end
|
||||
end
|
||||
|
4
mod.conf
Ficheiro normal
@@ -0,0 +1,4 @@
|
||||
name = technic_armor
|
||||
description = Adds armor made from lead, brass, cast iron, carbon steel, stainless steel, tin and silver
|
||||
depends = 3d_armor
|
||||
optional_depends = default, moreores, technic_worldgen
|
BIN
screenshot.png
Ficheiro normal
Depois Largura: | Altura: | Tamanho: 82 KiB |
@@ -1,41 +0,0 @@
|
||||
technic_armor/textures/technic_armor_helmet_brass.png:head
|
||||
technic_armor/textures/technic_armor_chestplate_brass.png:torso
|
||||
technic_armor/textures/technic_armor_leggings_brass.png:legs
|
||||
technic_armor/textures/technic_armor_boots_brass.png:feet
|
||||
technic_armor/textures/technic_armor_shield_brass.png:shield
|
||||
|
||||
technic_armor/textures/technic_armor_helmet_cast.png:head
|
||||
technic_armor/textures/technic_armor_chestplate_cast.png:torso
|
||||
technic_armor/textures/technic_armor_leggings_cast.png:legs
|
||||
technic_armor/textures/technic_armor_boots_cast.png:feet
|
||||
technic_armor/textures/technic_armor_shield_cast.png:shield
|
||||
|
||||
technic_armor/textures/technic_armor_helmet_stainless.png:head
|
||||
technic_armor/textures/technic_armor_chestplate_stainless.png:torso
|
||||
technic_armor/textures/technic_armor_leggings_stainless.png:legs
|
||||
technic_armor/textures/technic_armor_boots_stainless.png:feet
|
||||
technic_armor/textures/technic_armor_shield_stainless.png:shield
|
||||
|
||||
technic_armor/textures/technic_armor_helmet_tin.png:head
|
||||
technic_armor/textures/technic_armor_chestplate_tin.png:torso
|
||||
technic_armor/textures/technic_armor_leggings_tin.png:legs
|
||||
technic_armor/textures/technic_armor_boots_tin.png:feet
|
||||
technic_armor/textures/technic_armor_shield_tin.png:shield
|
||||
|
||||
technic_armor/textures/technic_armor_helmet_lead.png:head
|
||||
technic_armor/textures/technic_armor_chestplate_lead.png:torso
|
||||
technic_armor/textures/technic_armor_leggings_lead.png:legs
|
||||
technic_armor/textures/technic_armor_boots_lead.png:feet
|
||||
technic_armor/textures/technic_armor_shield_lead.png:shield
|
||||
|
||||
technic_armor/textures/technic_armor_helmet_carbon.png:head
|
||||
technic_armor/textures/technic_armor_chestplate_carbon.png:torso
|
||||
technic_armor/textures/technic_armor_leggings_carbon.png:legs
|
||||
technic_armor/textures/technic_armor_boots_carbon.png:feet
|
||||
technic_armor/textures/technic_armor_shield_carbon.png:shield
|
||||
|
||||
technic_armor/textures/technic_armor_helmet_silver.png:head
|
||||
technic_armor/textures/technic_armor_chestplate_silver.png:torso
|
||||
technic_armor/textures/technic_armor_leggings_silver.png:legs
|
||||
technic_armor/textures/technic_armor_boots_silver.png:feet
|
||||
technic_armor/textures/technic_armor_shield_silver.png:shield
|
Antes Largura: | Altura: | Tamanho: 528 B Depois Largura: | Altura: | Tamanho: 310 B |
Antes Largura: | Altura: | Tamanho: 436 B Depois Largura: | Altura: | Tamanho: 238 B |
Antes Largura: | Altura: | Tamanho: 432 B Depois Largura: | Altura: | Tamanho: 217 B |
Antes Largura: | Altura: | Tamanho: 362 B Depois Largura: | Altura: | Tamanho: 155 B |
Antes Largura: | Altura: | Tamanho: 528 B Depois Largura: | Altura: | Tamanho: 310 B |
Antes Largura: | Altura: | Tamanho: 436 B Depois Largura: | Altura: | Tamanho: 238 B |
Antes Largura: | Altura: | Tamanho: 506 B Depois Largura: | Altura: | Tamanho: 257 B |
Antes Largura: | Altura: | Tamanho: 405 B Depois Largura: | Altura: | Tamanho: 190 B |
Antes Largura: | Altura: | Tamanho: 501 B Depois Largura: | Altura: | Tamanho: 284 B |
Antes Largura: | Altura: | Tamanho: 386 B Depois Largura: | Altura: | Tamanho: 181 B |
Antes Largura: | Altura: | Tamanho: 661 B Depois Largura: | Altura: | Tamanho: 443 B |
Antes Largura: | Altura: | Tamanho: 399 B Depois Largura: | Altura: | Tamanho: 190 B |
Antes Largura: | Altura: | Tamanho: 520 B Depois Largura: | Altura: | Tamanho: 302 B |
Antes Largura: | Altura: | Tamanho: 436 B Depois Largura: | Altura: | Tamanho: 238 B |
Antes Largura: | Altura: | Tamanho: 723 B Depois Largura: | Altura: | Tamanho: 502 B |
Antes Largura: | Altura: | Tamanho: 553 B Depois Largura: | Altura: | Tamanho: 344 B |
Antes Largura: | Altura: | Tamanho: 698 B Depois Largura: | Altura: | Tamanho: 480 B |
Antes Largura: | Altura: | Tamanho: 522 B Depois Largura: | Altura: | Tamanho: 282 B |
Antes Largura: | Altura: | Tamanho: 723 B Depois Largura: | Altura: | Tamanho: 502 B |
Antes Largura: | Altura: | Tamanho: 553 B Depois Largura: | Altura: | Tamanho: 344 B |
Antes Largura: | Altura: | Tamanho: 918 B Depois Largura: | Altura: | Tamanho: 554 B |
Antes Largura: | Altura: | Tamanho: 549 B Depois Largura: | Altura: | Tamanho: 320 B |
Antes Largura: | Altura: | Tamanho: 709 B Depois Largura: | Altura: | Tamanho: 492 B |
Antes Largura: | Altura: | Tamanho: 465 B Depois Largura: | Altura: | Tamanho: 274 B |
Antes Largura: | Altura: | Tamanho: 867 B Depois Largura: | Altura: | Tamanho: 547 B |
Antes Largura: | Altura: | Tamanho: 496 B Depois Largura: | Altura: | Tamanho: 299 B |
Antes Largura: | Altura: | Tamanho: 710 B Depois Largura: | Altura: | Tamanho: 490 B |
Antes Largura: | Altura: | Tamanho: 537 B Depois Largura: | Altura: | Tamanho: 332 B |
Antes Largura: | Altura: | Tamanho: 693 B Depois Largura: | Altura: | Tamanho: 470 B |
Antes Largura: | Altura: | Tamanho: 405 B Depois Largura: | Altura: | Tamanho: 211 B |
Antes Largura: | Altura: | Tamanho: 617 B Depois Largura: | Altura: | Tamanho: 285 B |
Antes Largura: | Altura: | Tamanho: 335 B Depois Largura: | Altura: | Tamanho: 136 B |
Antes Largura: | Altura: | Tamanho: 693 B Depois Largura: | Altura: | Tamanho: 470 B |
Antes Largura: | Altura: | Tamanho: 405 B Depois Largura: | Altura: | Tamanho: 211 B |
Antes Largura: | Altura: | Tamanho: 701 B Depois Largura: | Altura: | Tamanho: 339 B |
Antes Largura: | Altura: | Tamanho: 343 B Depois Largura: | Altura: | Tamanho: 146 B |
Antes Largura: | Altura: | Tamanho: 647 B Depois Largura: | Altura: | Tamanho: 309 B |
Antes Largura: | Altura: | Tamanho: 343 B Depois Largura: | Altura: | Tamanho: 149 B |
Antes Largura: | Altura: | Tamanho: 680 B Depois Largura: | Altura: | Tamanho: 348 B |
Antes Largura: | Altura: | Tamanho: 350 B Depois Largura: | Altura: | Tamanho: 152 B |
Antes Largura: | Altura: | Tamanho: 665 B Depois Largura: | Altura: | Tamanho: 445 B |
Antes Largura: | Altura: | Tamanho: 401 B Depois Largura: | Altura: | Tamanho: 208 B |
Antes Largura: | Altura: | Tamanho: 358 B Depois Largura: | Altura: | Tamanho: 143 B |
Antes Largura: | Altura: | Tamanho: 360 B Depois Largura: | Altura: | Tamanho: 139 B |
Antes Largura: | Altura: | Tamanho: 360 B Depois Largura: | Altura: | Tamanho: 139 B |
Antes Largura: | Altura: | Tamanho: 385 B Depois Largura: | Altura: | Tamanho: 167 B |
Antes Largura: | Altura: | Tamanho: 358 B Depois Largura: | Altura: | Tamanho: 143 B |
Antes Largura: | Altura: | Tamanho: 377 B Depois Largura: | Altura: | Tamanho: 163 B |
Antes Largura: | Altura: | Tamanho: 358 B Depois Largura: | Altura: | Tamanho: 143 B |
Antes Largura: | Altura: | Tamanho: 374 B Depois Largura: | Altura: | Tamanho: 150 B |
Antes Largura: | Altura: | Tamanho: 375 B Depois Largura: | Altura: | Tamanho: 152 B |
Antes Largura: | Altura: | Tamanho: 375 B Depois Largura: | Altura: | Tamanho: 152 B |
Antes Largura: | Altura: | Tamanho: 432 B Depois Largura: | Altura: | Tamanho: 192 B |
Antes Largura: | Altura: | Tamanho: 374 B Depois Largura: | Altura: | Tamanho: 150 B |
Antes Largura: | Altura: | Tamanho: 395 B Depois Largura: | Altura: | Tamanho: 181 B |
Antes Largura: | Altura: | Tamanho: 374 B Depois Largura: | Altura: | Tamanho: 150 B |
Antes Largura: | Altura: | Tamanho: 361 B Depois Largura: | Altura: | Tamanho: 140 B |
Antes Largura: | Altura: | Tamanho: 363 B Depois Largura: | Altura: | Tamanho: 145 B |
Antes Largura: | Altura: | Tamanho: 363 B Depois Largura: | Altura: | Tamanho: 145 B |
Antes Largura: | Altura: | Tamanho: 395 B Depois Largura: | Altura: | Tamanho: 171 B |
Antes Largura: | Altura: | Tamanho: 361 B Depois Largura: | Altura: | Tamanho: 140 B |
Antes Largura: | Altura: | Tamanho: 375 B Depois Largura: | Altura: | Tamanho: 161 B |
Antes Largura: | Altura: | Tamanho: 361 B Depois Largura: | Altura: | Tamanho: 140 B |
Antes Largura: | Altura: | Tamanho: 355 B Depois Largura: | Altura: | Tamanho: 137 B |
Antes Largura: | Altura: | Tamanho: 359 B Depois Largura: | Altura: | Tamanho: 141 B |
Antes Largura: | Altura: | Tamanho: 359 B Depois Largura: | Altura: | Tamanho: 141 B |
Antes Largura: | Altura: | Tamanho: 398 B Depois Largura: | Altura: | Tamanho: 170 B |
Antes Largura: | Altura: | Tamanho: 355 B Depois Largura: | Altura: | Tamanho: 137 B |
Antes Largura: | Altura: | Tamanho: 377 B Depois Largura: | Altura: | Tamanho: 163 B |
Antes Largura: | Altura: | Tamanho: 355 B Depois Largura: | Altura: | Tamanho: 137 B |
Antes Largura: | Altura: | Tamanho: 693 B Depois Largura: | Altura: | Tamanho: 473 B |
Antes Largura: | Altura: | Tamanho: 732 B Depois Largura: | Altura: | Tamanho: 518 B |
Antes Largura: | Altura: | Tamanho: 706 B Depois Largura: | Altura: | Tamanho: 489 B |
Antes Largura: | Altura: | Tamanho: 827 B Depois Largura: | Altura: | Tamanho: 637 B |
Antes Largura: | Altura: | Tamanho: 743 B Depois Largura: | Altura: | Tamanho: 525 B |
Antes Largura: | Altura: | Tamanho: 752 B Depois Largura: | Altura: | Tamanho: 536 B |
Antes Largura: | Altura: | Tamanho: 684 B Depois Largura: | Altura: | Tamanho: 468 B |
Antes Largura: | Altura: | Tamanho: 539 B Depois Largura: | Altura: | Tamanho: 323 B |
Antes Largura: | Altura: | Tamanho: 451 B Depois Largura: | Altura: | Tamanho: 258 B |
Antes Largura: | Altura: | Tamanho: 449 B Depois Largura: | Altura: | Tamanho: 225 B |
Antes Largura: | Altura: | Tamanho: 365 B Depois Largura: | Altura: | Tamanho: 164 B |
Antes Largura: | Altura: | Tamanho: 539 B Depois Largura: | Altura: | Tamanho: 323 B |
Antes Largura: | Altura: | Tamanho: 451 B Depois Largura: | Altura: | Tamanho: 258 B |
Antes Largura: | Altura: | Tamanho: 528 B Depois Largura: | Altura: | Tamanho: 269 B |
Antes Largura: | Altura: | Tamanho: 440 B Depois Largura: | Altura: | Tamanho: 217 B |
Antes Largura: | Altura: | Tamanho: 514 B Depois Largura: | Altura: | Tamanho: 299 B |
Antes Largura: | Altura: | Tamanho: 391 B Depois Largura: | Altura: | Tamanho: 189 B |
Antes Largura: | Altura: | Tamanho: 534 B Depois Largura: | Altura: | Tamanho: 259 B |