Pimp and set the site in french

master
Dorian HODIN 2 years ago
parent d378010d5d
commit 8b8621fcc5

Binary file not shown.

@ -1,6 +0,0 @@
@typeparam TItem
<div class="card text-center">
@CardHeader(Item)
@CardBody(Item)
@CardFooter
</div>

@ -1,19 +0,0 @@
using Microsoft.AspNetCore.Components;
namespace ProjetBlazor.Components
{
public partial class Card<TItem>
{
[Parameter]
public RenderFragment<TItem> CardBody { get; set; }
[Parameter]
public RenderFragment CardFooter { get; set; }
[Parameter]
public RenderFragment<TItem> CardHeader { get; set; }
[Parameter]
public TItem Item { get; set; }
}
}

@ -20,7 +20,7 @@ namespace ProjetBlazor.Models
public int StackSize { get; set; } public int StackSize { get; set; }
[Required] [Required]
[Range(1, 125)] [Range(1, 3000)]
public int MaxDurability { get; set; } public int MaxDurability { get; set; }
public List<string>? EnchantCategories { get; set; } public List<string>? EnchantCategories { get; set; }

@ -9,30 +9,30 @@
<p> <p>
<label for="display-name"> <label for="display-name">
Display name: Nom d'affichage :
<InputText id="display-name" @bind-Value="itemModel.DisplayName" /> <InputText id="display-name" @bind-Value="itemModel.DisplayName" />
</label> </label>
</p> </p>
<p> <p>
<label for="name"> <label for="name">
Name: Nom :
<InputText id="name" @bind-Value="itemModel.Name" /> <InputText id="name" @bind-Value="itemModel.Name" />
</label> </label>
</p> </p>
<p> <p>
<label for="stack-size"> <label for="stack-size">
Stack size: Taille Stack :
<InputNumber id="stack-size" @bind-Value="itemModel.StackSize" /> <InputNumber id="stack-size" @bind-Value="itemModel.StackSize" />
</label> </label>
</p> </p>
<p> <p>
<label for="max-durability"> <label for="max-durability">
Max durability: Durabilité max :
<InputNumber id="max-durability" @bind-Value="itemModel.MaxDurability" /> <InputNumber id="max-durability" @bind-Value="itemModel.MaxDurability" />
</label> </label>
</p> </p>
<p> <p>
Enchant categories: Catégorie d'enchantement :
<div> <div>
@foreach (var item in enchantCategories) @foreach (var item in enchantCategories)
{ {
@ -43,7 +43,7 @@
</div> </div>
</p> </p>
<p> <p>
Repair with: Réparable avec :
<div> <div>
@foreach (var item in repairWith) @foreach (var item in repairWith)
{ {
@ -55,16 +55,16 @@
</p> </p>
<p> <p>
<label> <label>
Item image: Image de l'item :
<InputFile OnChange="@LoadImage" accept=".png" /> <InputFile OnChange="@LoadImage" accept=".png" />
</label> </label>
</p> </p>
<p> <p>
<label> <label>
Accept Condition: Accepter les conditions :
<InputCheckbox @bind-Value="itemModel.AcceptCondition" /> <InputCheckbox @bind-Value="itemModel.AcceptCondition" />
</label> </label>
</p> </p>
<button type="submit">Submit</button> <button type="submit">Valider</button>
</EditForm> </EditForm>

@ -11,7 +11,7 @@ namespace ProjetBlazor.Pages
/// <summary> /// <summary>
/// The default enchant categories. /// The default enchant categories.
/// </summary> /// </summary>
private List<string> enchantCategories = new List<String>() { "armor", "armor_head", "armor_chest", "weapon", "digger", "breakable", "vanishable" }; private List<string> enchantCategories = new List<String>() { "Armure ", "Casque ", "Plastron ", "Arme ", "Outils ", "Cassable ", "Non Enchantable " };
/// <summary> /// <summary>
/// The current item model /// The current item model
@ -25,7 +25,7 @@ namespace ProjetBlazor.Pages
/// <summary> /// <summary>
/// The default repair with. /// The default repair with.
/// </summary> /// </summary>
private List<string> repairWith = new List<string>() { "oak_planks", "spruce_planks", "birch_planks", "jungle_planks", "acacia_planks", "dark_oak_planks", "crimson_planks", "warped_planks" }; private List<string> repairWith = new List<string>() { "Bois ", "Fer ", "Or ", "Diamant ", "Ficelle ", "Même Item" };
[Inject] [Inject]
public IDataService DataService { get; set; } public IDataService DataService { get; set; }

@ -8,30 +8,30 @@
<p> <p>
<label for="display-name"> <label for="display-name">
Display name: Nom d'affichage :
<InputText id="display-name" @bind-Value="itemModel.DisplayName" /> <InputText id="display-name" @bind-Value="itemModel.DisplayName" />
</label> </label>
</p> </p>
<p> <p>
<label for="name"> <label for="name">
Name: Nom :
<InputText id="name" @bind-Value="itemModel.Name" /> <InputText id="name" @bind-Value="itemModel.Name" />
</label> </label>
</p> </p>
<p> <p>
<label for="stack-size"> <label for="stack-size">
Stack size: Taille Stack :
<InputNumber id="stack-size" @bind-Value="itemModel.StackSize" /> <InputNumber id="stack-size" @bind-Value="itemModel.StackSize" />
</label> </label>
</p> </p>
<p> <p>
<label for="max-durability"> <label for="max-durability">
Max durability: Durabilité max :
<InputNumber id="max-durability" @bind-Value="itemModel.MaxDurability" /> <InputNumber id="max-durability" @bind-Value="itemModel.MaxDurability" />
</label> </label>
</p> </p>
<p> <p>
Enchant categories: Catégorie d'enchantement :
<div> <div>
@foreach (var item in enchantCategories) @foreach (var item in enchantCategories)
{ {
@ -42,7 +42,7 @@
</div> </div>
</p> </p>
<p> <p>
Repair with: Réparable avec :
<div> <div>
@foreach (var item in repairWith) @foreach (var item in repairWith)
{ {
@ -54,7 +54,7 @@
</p> </p>
<p> <p>
<label> <label>
Current Item image: Image actuel de l'item :
@if (File.Exists($"{WebHostEnvironment.WebRootPath}/images/{itemModel.Name}.png")) @if (File.Exists($"{WebHostEnvironment.WebRootPath}/images/{itemModel.Name}.png"))
{ {
<img src="images/@(itemModel.Name).png" class="img-thumbnail" title="@itemModel.DisplayName" alt="@itemModel.DisplayName" style="max-width: 150px" /> <img src="images/@(itemModel.Name).png" class="img-thumbnail" title="@itemModel.DisplayName" alt="@itemModel.DisplayName" style="max-width: 150px" />
@ -67,16 +67,16 @@
</p> </p>
<p> <p>
<label> <label>
Item image: Image de l'item :
<InputFile OnChange="@LoadImage" accept=".png" /> <InputFile OnChange="@LoadImage" accept=".png" />
</label> </label>
</p> </p>
<p> <p>
<label> <label>
Accept Condition: Accepter les conditions :
<InputCheckbox @bind-Value="itemModel.AcceptCondition" /> <InputCheckbox @bind-Value="itemModel.AcceptCondition" />
</label> </label>
</p> </p>
<button type="submit">Submit</button> <button type="submit">Valider</button>
</EditForm> </EditForm>

@ -14,7 +14,7 @@ namespace ProjetBlazor.Pages
/// <summary> /// <summary>
/// The default enchant categories. /// The default enchant categories.
/// </summary> /// </summary>
private List<string> enchantCategories = new List<string>() { "armor", "armor_head", "armor_chest", "weapon", "digger", "breakable", "vanishable" }; private List<string> enchantCategories = new List<String>() { "Armure ", "Casque ", "Plastron ", "Arme ", "Outils ", "Cassable ", "Non Enchantable " };
/// <summary> /// <summary>
/// The current item model /// The current item model
@ -28,7 +28,7 @@ namespace ProjetBlazor.Pages
/// <summary> /// <summary>
/// The default repair with. /// The default repair with.
/// </summary> /// </summary>
private List<string> repairWith = new List<string>() { "oak_planks", "spruce_planks", "birch_planks", "jungle_planks", "acacia_planks", "dark_oak_planks", "crimson_planks", "warped_planks" }; private List<string> repairWith = new List<string>() { "Bois ", "Fer ", "Or ", "Diamant ", "Ficelle ", "Même Item" };
[Inject] [Inject]
public IDataService DataService { get; set; } public IDataService DataService { get; set; }

@ -29,20 +29,20 @@
} }
</DisplayTemplate> </DisplayTemplate>
</DataGridColumn> </DataGridColumn>
<DataGridColumn TItem="Item" Field="@nameof(Item.DisplayName)" Caption="Display name" /> <DataGridColumn TItem="Item" Field="@nameof(Item.DisplayName)" Caption="Nom" />
<DataGridColumn TItem="Item" Field="@nameof(Item.StackSize)" Caption="Stack size" /> <DataGridColumn TItem="Item" Field="@nameof(Item.StackSize)" Caption="Taille Stack" />
<DataGridColumn TItem="Item" Field="@nameof(Item.MaxDurability)" Caption="Maximum durability" /> <DataGridColumn TItem="Item" Field="@nameof(Item.MaxDurability)" Caption="Durabilité Max" />
<DataGridColumn TItem="Item" Field="@nameof(Item.EnchantCategories)" Caption="Enchant categories"> <DataGridColumn TItem="Item" Field="@nameof(Item.EnchantCategories)" Caption="Catégories d'enchantement">
<DisplayTemplate> <DisplayTemplate>
@(string.Join(", ", ((Item)context).EnchantCategories)) @(string.Join(", ", ((Item)context).EnchantCategories))
</DisplayTemplate> </DisplayTemplate>
</DataGridColumn> </DataGridColumn>
<DataGridColumn TItem="Item" Field="@nameof(Item.RepairWith)" Caption="Repair with"> <DataGridColumn TItem="Item" Field="@nameof(Item.RepairWith)" Caption="Réparable avec">
<DisplayTemplate> <DisplayTemplate>
@(string.Join(", ", ((Item)context).RepairWith)) @(string.Join(", ", ((Item)context).RepairWith))
</DisplayTemplate> </DisplayTemplate>
</DataGridColumn> </DataGridColumn>
<DataGridColumn TItem="Item" Field="@nameof(Item.CreatedDate)" Caption="Created date" DisplayFormat="{0:d}" DisplayFormatProvider="@System.Globalization.CultureInfo.GetCultureInfo("fr-FR")" /> <DataGridColumn TItem="Item" Field="@nameof(Item.CreatedDate)" Caption="Date de création" DisplayFormat="{0:d}" DisplayFormatProvider="@System.Globalization.CultureInfo.GetCultureInfo("fr-FR")" />
<DataGridColumn TItem="Item" Field="@nameof(Item.Id)" Caption="Action"> <DataGridColumn TItem="Item" Field="@nameof(Item.Id)" Caption="Action">
<DisplayTemplate> <DisplayTemplate>
<a style="background-color : #3B8526; color : white; border-color :#3B8526; margin-bottom : 5px" href="Edit/@(context.Id)" class="btn btn-primary"><i class="fa fa-edit"></i><t style="background-color : #3B8526; color : white"> Editer</t></a> <a style="background-color : #3B8526; color : white; border-color :#3B8526; margin-bottom : 5px" href="Edit/@(context.Id)" class="btn btn-primary"><i class="fa fa-edit"></i><t style="background-color : #3B8526; color : white"> Editer</t></a>

@ -31,7 +31,6 @@ namespace ProjetBlazor.Services
var currentData = await _localStorage.GetItemAsync<List<Item>>("data"); var currentData = await _localStorage.GetItemAsync<List<Item>>("data");
// Simulate the Id // Simulate the Id
model.Id = currentData.Max(s => s.Id) + 1;
// Add the item to the current data // Add the item to the current data
currentData.Add(ItemFactory.Create(model)); currentData.Add(ItemFactory.Create(model));

File diff suppressed because one or more lines are too long

@ -20,10 +20,6 @@ build_property._RazorSourceGeneratorDebug =
build_metadata.AdditionalFiles.TargetPath = QXBwLnJhem9y build_metadata.AdditionalFiles.TargetPath = QXBwLnJhem9y
build_metadata.AdditionalFiles.CssScope = build_metadata.AdditionalFiles.CssScope =
[C:/Users/Dorian/Documents/Blazor/Code/ProjetBlazor/Components/Card.razor]
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xDYXJkLnJhem9y
build_metadata.AdditionalFiles.CssScope =
[C:/Users/Dorian/Documents/Blazor/Code/ProjetBlazor/Modals/DeleteConfirmation.razor] [C:/Users/Dorian/Documents/Blazor/Code/ProjetBlazor/Modals/DeleteConfirmation.razor]
build_metadata.AdditionalFiles.TargetPath = TW9kYWxzXERlbGV0ZUNvbmZpcm1hdGlvbi5yYXpvcg== build_metadata.AdditionalFiles.TargetPath = TW9kYWxzXERlbGV0ZUNvbmZpcm1hdGlvbi5yYXpvcg==
build_metadata.AdditionalFiles.CssScope = build_metadata.AdditionalFiles.CssScope =

@ -1 +1 @@
e8ebd628603808f91b55bbe2dea9540085b9d592 4709cdc97c19ee2b07f96a9176c2f266eeeda892

File diff suppressed because one or more lines are too long

@ -1,6 +1,6 @@
{ {
"Version": 1, "Version": 1,
"Hash": "upol44yAsRl2gxNyobkuhY4XyZMZLImkjwOcNbXBqXc=", "Hash": "aHinnXbimqKIUrSdK8typED4a/yLM1A3agoVLETO5bc=",
"Source": "ProjetBlazor", "Source": "ProjetBlazor",
"BasePath": "_content/ProjetBlazor", "BasePath": "_content/ProjetBlazor",
"Mode": "Default", "Mode": "Default",
@ -1019,23 +1019,6 @@
"CopyToPublishDirectory": "PreserveNewest", "CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "wwwroot\\images\\default.png" "OriginalItemSpec": "wwwroot\\images\\default.png"
}, },
{
"Identity": "C:\\Users\\Dorian\\Documents\\Blazor\\Code\\ProjetBlazor\\wwwroot\\images\\dognosis.png",
"SourceId": "ProjetBlazor",
"SourceType": "Discovered",
"ContentRoot": "C:\\Users\\Dorian\\Documents\\Blazor\\Code\\ProjetBlazor\\wwwroot\\",
"BasePath": "_content/ProjetBlazor",
"RelativePath": "images/dognosis.png",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
"RelatedAsset": "",
"AssetTraitName": "",
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "wwwroot\\images\\dognosis.png"
},
{ {
"Identity": "C:\\Users\\Dorian\\Documents\\Blazor\\Code\\ProjetBlazor\\wwwroot\\images\\minecraft.png", "Identity": "C:\\Users\\Dorian\\Documents\\Blazor\\Code\\ProjetBlazor\\wwwroot\\images\\minecraft.png",
"SourceId": "ProjetBlazor", "SourceId": "ProjetBlazor",

File diff suppressed because one or more lines are too long

@ -68,10 +68,6 @@
"Id": "C:\\Users\\Dorian\\Documents\\Blazor\\Code\\ProjetBlazor\\wwwroot\\images\\default.png", "Id": "C:\\Users\\Dorian\\Documents\\Blazor\\Code\\ProjetBlazor\\wwwroot\\images\\default.png",
"PackagePath": "staticwebassets\\images\\default.png" "PackagePath": "staticwebassets\\images\\default.png"
}, },
{
"Id": "C:\\Users\\Dorian\\Documents\\Blazor\\Code\\ProjetBlazor\\wwwroot\\images\\dognosis.png",
"PackagePath": "staticwebassets\\images\\dognosis.png"
},
{ {
"Id": "C:\\Users\\Dorian\\Documents\\Blazor\\Code\\ProjetBlazor\\wwwroot\\images\\minecraft.png", "Id": "C:\\Users\\Dorian\\Documents\\Blazor\\Code\\ProjetBlazor\\wwwroot\\images\\minecraft.png",
"PackagePath": "staticwebassets\\images\\minecraft.png" "PackagePath": "staticwebassets\\images\\minecraft.png"

@ -256,22 +256,6 @@
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory> <CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
<OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\images\default.png))</OriginalItemSpec> <OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\images\default.png))</OriginalItemSpec>
</StaticWebAsset> </StaticWebAsset>
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\images\dognosis.png))">
<SourceType>Package</SourceType>
<SourceId>ProjetBlazor</SourceId>
<ContentRoot>$(MSBuildThisFileDirectory)..\staticwebassets\</ContentRoot>
<BasePath>_content/ProjetBlazor</BasePath>
<RelativePath>images/dognosis.png</RelativePath>
<AssetKind>All</AssetKind>
<AssetMode>All</AssetMode>
<AssetRole>Primary</AssetRole>
<RelatedAsset></RelatedAsset>
<AssetTraitName></AssetTraitName>
<AssetTraitValue></AssetTraitValue>
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
<OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\images\dognosis.png))</OriginalItemSpec>
</StaticWebAsset>
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\images\minecraft.png))"> <StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\images\minecraft.png))">
<SourceType>Package</SourceType> <SourceType>Package</SourceType>
<SourceId>ProjetBlazor</SourceId> <SourceId>ProjetBlazor</SourceId>

@ -12,333 +12,5 @@
], ],
"createddate": "2017-12-19", "createddate": "2017-12-19",
"updateddate": null "updateddate": null
},
{
"id": 2,
"displayname": "Hivedom",
"name": "hivedom",
"stacksize": 52,
"maxdurability": 115,
"enchantcategories": [],
"repairwith": [
"birch_planks",
"oak_planks"
],
"createddate": "2018-03-03",
"updateddate": null
},
{
"id": 3,
"displayname": "Dognosis",
"name": "dognosis",
"stacksize": 44,
"maxdurability": 27,
"enchantcategories": [
"breakable",
"armor",
"armor_chest"
],
"repairwith": [
"jungle_planks",
"acacia_planks"
],
"createddate": "2018-04-23",
"updateddate": "2016-04-05"
},
{
"id": 4,
"displayname": "Comdom",
"name": "comdom",
"stacksize": 26,
"maxdurability": 26,
"enchantcategories": [
"breakable",
"breakable"
],
"repairwith": [],
"createddate": "2019-02-12",
"updateddate": "2018-04-30"
},
{
"id": 5,
"displayname": "Moltonic",
"name": "moltonic",
"stacksize": 39,
"maxdurability": 47,
"enchantcategories": [
"breakable",
"armor_chest"
],
"repairwith": [
"dark_oak_planks"
],
"createddate": "2017-03-04",
"updateddate": null
},
{
"id": 6,
"displayname": "Otherside",
"name": "otherside",
"stacksize": 24,
"maxdurability": 49,
"enchantcategories": [],
"repairwith": [
"warped_planks"
],
"createddate": "2016-06-20",
"updateddate": "2021-10-15"
},
{
"id": 7,
"displayname": "Gorganic",
"name": "gorganic",
"stacksize": 2,
"maxdurability": 95,
"enchantcategories": [
"armor_chest",
"breakable",
"armor"
],
"repairwith": [],
"createddate": "2014-02-12",
"updateddate": "2015-09-22"
},
{
"id": 8,
"displayname": "Retrotex",
"name": "retrotex",
"stacksize": 25,
"maxdurability": 115,
"enchantcategories": [
"weapon"
],
"repairwith": [
"acacia_planks"
],
"createddate": "2020-01-11",
"updateddate": null
},
{
"id": 9,
"displayname": "Sultraxin",
"name": "sultraxin",
"stacksize": 62,
"maxdurability": 64,
"enchantcategories": [],
"repairwith": [
"warped_planks",
"acacia_planks"
],
"createddate": "2015-03-04",
"updateddate": "2021-01-06"
},
{
"id": 10,
"displayname": "Calcu",
"name": "calcu",
"stacksize": 38,
"maxdurability": 92,
"enchantcategories": [
"armor",
"armor_head",
"vanishable"
],
"repairwith": [
"crimson_planks"
],
"createddate": "2020-05-12",
"updateddate": "2016-09-05"
},
{
"id": 11,
"displayname": "Scenty",
"name": "scenty",
"stacksize": 48,
"maxdurability": 55,
"enchantcategories": [
"vanishable",
"armor_chest"
],
"repairwith": [
"warped_planks"
],
"createddate": "2018-03-29",
"updateddate": "2017-12-23"
},
{
"id": 12,
"displayname": "Podunk",
"name": "podunk",
"stacksize": 63,
"maxdurability": 56,
"enchantcategories": [],
"repairwith": [
"warped_planks"
],
"createddate": "2018-05-03",
"updateddate": null
},
{
"id": 13,
"displayname": "Quantasis",
"name": "quantasis",
"stacksize": 39,
"maxdurability": 34,
"enchantcategories": [
"breakable"
],
"repairwith": [
"acacia_planks"
],
"createddate": "2015-01-06",
"updateddate": null
},
{
"id": 14,
"displayname": "Dreamia",
"name": "dreamia",
"stacksize": 39,
"maxdurability": 9,
"enchantcategories": [
"weapon",
"vanishable",
"weapon"
],
"repairwith": [
"oak_planks",
"oak_planks"
],
"createddate": "2014-02-12",
"updateddate": "2021-08-14"
},
{
"id": 15,
"displayname": "Zolarex",
"name": "zolarex",
"stacksize": 20,
"maxdurability": 19,
"enchantcategories": [
"digger"
],
"repairwith": [],
"createddate": "2019-09-29",
"updateddate": "2016-02-05"
},
{
"id": 16,
"displayname": "Bezal",
"name": "bezal",
"stacksize": 59,
"maxdurability": 73,
"enchantcategories": [
"breakable"
],
"repairwith": [
"jungle_planks",
"jungle_planks"
],
"createddate": "2018-05-14",
"updateddate": null
},
{
"id": 17,
"displayname": "Gogol",
"name": "gogol",
"stacksize": 28,
"maxdurability": 40,
"enchantcategories": [],
"repairwith": [
"spruce_planks"
],
"createddate": "2021-04-15",
"updateddate": "2018-04-12"
},
{
"id": 18,
"displayname": "Bullzone",
"name": "bullzone",
"stacksize": 32,
"maxdurability": 111,
"enchantcategories": [],
"repairwith": [],
"createddate": "2022-03-04",
"updateddate": null
},
{
"id": 19,
"displayname": "Aclima",
"name": "aclima",
"stacksize": 64,
"maxdurability": 51,
"enchantcategories": [
"armor_chest",
"breakable",
"vanishable"
],
"repairwith": [
"jungle_planks"
],
"createddate": "2016-08-20",
"updateddate": "2021-10-08"
},
{
"id": 20,
"displayname": "Quilm",
"name": "quilm",
"stacksize": 55,
"maxdurability": 42,
"enchantcategories": [],
"repairwith": [
"acacia_planks",
"warped_planks"
],
"createddate": "2014-10-15",
"updateddate": "2014-01-06"
},
{
"id": 21,
"displayname": "Tropolis",
"name": "tropolis",
"stacksize": 8,
"maxdurability": 33,
"enchantcategories": [
"vanishable",
"armor_head"
],
"repairwith": [],
"createddate": "2021-11-01",
"updateddate": "2014-07-30"
},
{
"id": 22,
"displayname": "Blurrybus",
"name": "blurrybus",
"stacksize": 11,
"maxdurability": 125,
"enchantcategories": [
"digger",
"armor_head"
],
"repairwith": [
"crimson_planks",
"dark_oak_planks"
],
"createddate": "2018-10-02",
"updateddate": "2018-09-12"
},
{
"id": 23,
"displayname": "Unq",
"name": "unq",
"stacksize": 58,
"maxdurability": 38,
"enchantcategories": [
"digger"
],
"repairwith": [
"warped_planks"
],
"createddate": "2018-10-17",
"updateddate": null
} }
] ]

Binary file not shown.

Before

Width:  |  Height:  |  Size: 343 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 268 B

Loading…
Cancel
Save