This commit is contained in:
stefan.wagner 2025-01-07 16:37:01 +01:00
parent e9a327c58c
commit b10e4a3adf
114 changed files with 3129 additions and 0 deletions

25
CS_Projekt_Sem2.sln Normal file
View File

@ -0,0 +1,25 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.11.35327.3
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CS_Projekt_Sem2", "CS_Projekt_Sem2\CS_Projekt_Sem2.csproj", "{BD2E44F6-A23F-4A5E-ACD6-F7E7A42632C2}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{BD2E44F6-A23F-4A5E-ACD6-F7E7A42632C2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{BD2E44F6-A23F-4A5E-ACD6-F7E7A42632C2}.Debug|Any CPU.Build.0 = Debug|Any CPU
{BD2E44F6-A23F-4A5E-ACD6-F7E7A42632C2}.Release|Any CPU.ActiveCfg = Release|Any CPU
{BD2E44F6-A23F-4A5E-ACD6-F7E7A42632C2}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {EBF4FDD4-8892-4040-AD4C-AE67E3DC276E}
EndGlobalSection
EndGlobal

9
CS_Projekt_Sem2/App.xaml Normal file
View File

@ -0,0 +1,9 @@
<Application x:Class="CS_Projekt_Sem2.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:CS_Projekt_Sem2"
StartupUri="MainWindow.xaml">
<Application.Resources>
</Application.Resources>
</Application>

View File

@ -0,0 +1,14 @@
using System.Configuration;
using System.Data;
using System.Windows;
namespace CS_Projekt_Sem2
{
/// <summary>
/// Interaction logic for App.xaml
/// </summary>
public partial class App : Application
{
}
}

View File

@ -0,0 +1,10 @@
using System.Windows;
[assembly: ThemeInfo(
ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located
//(used if a resource is not found in the page,
// or application resource dictionaries)
ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located
//(used if a resource is not found in the page,
// app, or any theme specific resource dictionaries)
)]

View File

@ -0,0 +1,38 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CS_Projekt_Sem2
{
public class Attribute
{
//Name des Attributs
public string AttributeName { get; }
//Konstruktor, in dem man den Namen übergeben muss
public Attribute(string name)
{
this.AttributeName = name;
}
//Aktuelles Level des Attributs
private int _level = 0;
//Öffentliche Sichtbarkeit des Levels
public int Level { get { return _level; } }
//Kosten für eine Erhöhung des Levels
public int CostsNextLevel { get { return (int)((_level == 0 ? 1 : _level + 1) * 1.1); } }
//Versuch, ein Level zu erhöhen
public bool PutNextLevel(int aviablePoints)
{
if (aviablePoints >= CostsNextLevel)
{
_level++;
return true;
}
else
return false;
}
}
}

View File

@ -0,0 +1,46 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UseWPF>true</UseWPF>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Player\**" />
<EmbeddedResource Remove="Player\**" />
<None Remove="Player\**" />
<Page Remove="Player\**" />
</ItemGroup>
<ItemGroup>
<None Remove="Elder-Ebene.jpg" />
<None Remove="Elder-Fight-Char-Auswahl.jpg" />
<None Remove="Elder-Gebirge.jpg" />
<None Remove="Elder-River.jpg" />
<None Remove="elder-scrolls-6-titel.jpg" />
<None Remove="Elder-Waypoint.jpg" />
<None Remove="Elder-Winter.jpg" />
<None Remove="Händler\Doppelschwingen_Bogen.jpeg" />
<None Remove="Händler\Drachen_Dolch.jpeg" />
<None Remove="skyrim-forest.jpg" />
</ItemGroup>
<ItemGroup>
<Compile Update="Properties\Resources.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
</Project>

Binary file not shown.

After

Width:  |  Height:  |  Size: 166 KiB

View File

@ -0,0 +1,249 @@
<Window x:Class="CS_Projekt_Sem2.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:CS_Projekt_Sem2"
mc:Ignorable="d"
SizeChanged="Window_SizeChanged"
MinWidth="1000"
MinHeight="550"
Title="MainWindow" Height="550" Width="1000">
<Grid Margin="0,0,0,-6">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="0*"/>
<ColumnDefinition Width="0*"/>
<ColumnDefinition Width="0*"/>
<ColumnDefinition Width="0*"/>
<ColumnDefinition Width="0*"/>
<ColumnDefinition Width="0*"/>
<ColumnDefinition Width="0*"/>
<ColumnDefinition/>
<ColumnDefinition Width="0*"/>
</Grid.ColumnDefinitions>
<Image x:Name="hintergrund" Source="/elder-scrolls-6-titel.jpg" Stretch="Fill" Grid.Column="7" Margin="-6,-12,-6,-6" Grid.ColumnSpan="2"/>
<TextBlock x:Name="Hinter_char_HUD" Grid.ColumnSpan="8" HorizontalAlignment="Left" Margin="-2,0,0,0" TextWrapping="Wrap" Text="" VerticalAlignment="Top" Height="100" Width="125" Background="#FFCCB830" Visibility="Hidden"/>
<Button x:Name="Start" Content="START" Margin="329,413,0,0" Foreground="#FFAAAED0" FontSize="18" FontFamily="Segoe UI Variable Text Semibold" Click="Start_Click" Grid.Column="7" RenderTransformOrigin="0.49,0.484" Height="29" VerticalAlignment="Top" HorizontalAlignment="Left" Width="98" Visibility="Hidden">
<Button.Background>
<LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
<GradientStop Color="Black"/>
<GradientStop Color="#FFCA2F2F" Offset="1"/>
</LinearGradientBrush>
</Button.Background>
</Button>
<Button x:Name="Back_to_Main" Content="Zurück" Grid.ColumnSpan="8" Margin="0,0,853,58" Foreground="#FFAAAED0" Click="Back_to_Main_Click" HorizontalAlignment="Right" Width="98" Height="29" VerticalAlignment="Bottom" Visibility="Hidden">
<Button.Background>
<LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
<GradientStop Color="Black"/>
<GradientStop Color="#FFCA2F2F" Offset="1"/>
</LinearGradientBrush>
</Button.Background>
</Button>
<Image x:Name="Krieger_Print" Grid.ColumnSpan="8" HorizontalAlignment="Right" Height="250" Margin="0,0,770,220" VerticalAlignment="Bottom" Width="140" Visibility="Hidden"/>
<Image x:Name="Hunter_Print" Grid.ColumnSpan="8" HorizontalAlignment="Right" Height="250" Margin="0,0,435,220" VerticalAlignment="Bottom" Width="140" Visibility="Hidden"/>
<Image x:Name="Magier_Print" Grid.ColumnSpan="8" HorizontalAlignment="Right" Height="250" Margin="0,0,80,220" VerticalAlignment="Bottom" Width="140" Visibility="Hidden"/>
<Button x:Name="Auswahl_Krieger" Content="Auswählen" Grid.ColumnSpan="8" HorizontalAlignment="Right" Margin="0,0,786,135" VerticalAlignment="Bottom" Height="30" Width="100" Foreground="#FFAAAED0" Click="Auswahl_Krieger_Click" Visibility="Hidden">
<Button.Background>
<LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
<GradientStop Color="Black"/>
<GradientStop Color="#FFCA2F2F" Offset="1"/>
</LinearGradientBrush>
</Button.Background>
</Button>
<Button x:Name="Auswahl_Hunter" Content="Auswählen" HorizontalAlignment="Center" Margin="0,369,0,0" VerticalAlignment="Top" Height="30" Width="100" Foreground="#FFB7BEC8" Click="Auswahl_Hunter_Click" Grid.Column="7" Visibility="Hidden">
<Button.Background>
<LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
<GradientStop Color="Black"/>
<GradientStop Color="#FFCA2F2F" Offset="1"/>
</LinearGradientBrush>
</Button.Background>
</Button>
<Button x:Name="Auswahl_Magier" Content="Auswählen" Grid.ColumnSpan="8" HorizontalAlignment="Right" Margin="0,0,100,120" VerticalAlignment="Bottom" Height="30" Width="100" Foreground="#FFCCCFDE" Click="Auswahl_Magier_Click" Visibility="Hidden">
<Button.Background>
<LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
<GradientStop Color="Black"/>
<GradientStop Color="#FFCA2F2F" Offset="1"/>
</LinearGradientBrush>
</Button.Background>
</Button>
<Label x:Name="Nametag_Magier" Content="Magier" Grid.ColumnSpan="8" HorizontalAlignment="Right" Height="39" Margin="0,0,110,422" VerticalAlignment="Bottom" Width="80" Background="#FF343BA4" Foreground="#FF8CF788" FontFamily="Comic Sans MS" FontSize="20" Visibility="Hidden"/>
<Label x:Name="Nametag_Hunter" Content="Kundschafter" HorizontalAlignment="Right" Height="39" Margin="0,0,435,442" VerticalAlignment="Bottom" Width="136" Grid.Column="7" FontFamily="Comic Sans MS" FontSize="20" Background="#FF4EDC31" Foreground="#FFB32ABB" Visibility="Hidden"/>
<Label x:Name="Nametag_Krieger" Content="Krieger" Grid.ColumnSpan="8" HorizontalAlignment="Right" Height="39" Margin="0,0,804,454" VerticalAlignment="Bottom" Width="82" FontFamily="Comic Sans MS" FontSize="20" Background="#FFC35414" Foreground="#FF093707" Visibility="Hidden"/>
<Image x:Name="Task" Margin="0,0,-10,0" Source="/Leiste.jpg" Stretch="Fill" Grid.Column="7" Grid.ColumnSpan="2" Height="53" VerticalAlignment="Bottom" Visibility="Collapsed"/>
<StackPanel x:Name="Stackpanel_Taskleiste" Orientation="Horizontal" Grid.ColumnSpan="8" Height="68" VerticalAlignment="Bottom" Visibility="Hidden">
<Button x:Name="zur_Taverne" Content="Taverne" Grid.ColumnSpan="8" HorizontalAlignment="Left" Margin="4,20" VerticalAlignment="Bottom" Height="25" Width="80" Click="zur_Taverne_Click" Background="#FF24D40B" BorderBrush="#00000000" Foreground="#FF190ACE"/>
<Button x:Name="zum_Waffenhändler" Content="Waffenhändler" Grid.ColumnSpan="8" HorizontalAlignment="Left" Margin="4,20" VerticalAlignment="Bottom" Height="25" Width="90" Click="zum_Waffenhändler_Click" Background="#FF24D40B" BorderBrush="#00000000" Foreground="#FF190ACE"/>
<Button x:Name="zum_Trankhändler" Content="Trankhändler" Grid.ColumnSpan="8" HorizontalAlignment="Left" Margin="4,20" VerticalAlignment="Bottom" Height="25" Width="90" Click="zum_Trankhändler_Click" Background="#FF24D40B" BorderBrush="#00000000" Foreground="#FF190ACE"/>
<Button x:Name="zum_Dungeon" Content="Dungeon" Grid.ColumnSpan="8" HorizontalAlignment="Left" Margin="4,20" VerticalAlignment="Bottom" Height="25" Width="70" Click="zum_Dungeon_Click" Background="#FF24D40B" BorderBrush="#00000000" Foreground="#FF190ACE"/>
<Button x:Name="zur_Gilde" Content="Gilde" Grid.ColumnSpan="8" HorizontalAlignment="Left" Margin="4,20" VerticalAlignment="Bottom" Height="25" Width="80" Click="zur_Gilde_Click" Background="#FF24D40B" BorderBrush="#00000000" Foreground="#FF190ACE"/>
<Button x:Name="zum_Stall" Content="Stall" Grid.ColumnSpan="8" HorizontalAlignment="Left" Margin="4,20" VerticalAlignment="Bottom" Height="25" Width="80" Click="zum_Stall_Click" Background="#FF24D40B" BorderBrush="#00000000" Foreground="#FF190ACE"/>
<Button x:Name="zur_Arena" Content="Arena" Grid.ColumnSpan="8" HorizontalAlignment="Left" Margin="4,20" VerticalAlignment="Bottom" Height="25" Width="80" Click="zur_Arena_Click" Background="#FF24D40B" BorderBrush="#00000000" Foreground="#FF190ACE"/>
<Button x:Name="speicherung" Content="Speichern" Grid.ColumnSpan="8" HorizontalAlignment="Left" Margin="4,20" VerticalAlignment="Bottom" Height="25" Width="90" Click="speichrung_Click" Background="#FF24D40B" BorderBrush="#00000000" Foreground="#FF190ACE"/>
<Button x:Name="zum_Charakter" Content="Charakter" Grid.ColumnSpan="8" HorizontalAlignment="Left" Margin="4,20" VerticalAlignment="Bottom" Height="25" Width="80" Click="zum_Charakter_Click" Background="#FF24D40B" BorderBrush="#00000000" Foreground="#FF190ACE"/>
</StackPanel>
<Button x:Name="Back" Content="zum Dorf" Grid.ColumnSpan="8" HorizontalAlignment="Left" Height="25" Margin="906,10,0,0" VerticalAlignment="Top" Width="84" Foreground="#FFAAAED0" Click="Back_Click" Visibility="Collapsed">
<Button.Background>
<LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
<GradientStop Color="Black"/>
<GradientStop Color="#FFCA2F2F" Offset="1"/>
</LinearGradientBrush>
</Button.Background>
</Button>
<Image x:Name="Char_Profil" Grid.ColumnSpan="8" HorizontalAlignment="Left" Height="80" Margin="10,10,0,0" VerticalAlignment="Top" Width="60" Visibility="Hidden"/>
<TextBlock x:Name="Drachnen_Count" Grid.ColumnSpan="8" HorizontalAlignment="Left" Margin="97,10,0,0" TextWrapping="Wrap" Text="" VerticalAlignment="Top" Width="50" Height="20" Visibility="Collapsed"/>
<Image x:Name="Drachnen_Bild" Grid.ColumnSpan="8" HorizontalAlignment="Left" Height="20" Margin="73,10,0,0" VerticalAlignment="Top" Width="20" Visibility="Hidden"/>
<TextBlock x:Name="Münzen_Count" Grid.ColumnSpan="8" Margin="97,30,0,0" TextWrapping="Wrap" Text="" Height="20" VerticalAlignment="Top" HorizontalAlignment="Left" Width="50" Visibility="Collapsed"/>
<Image x:Name="Münzen_Bild" Grid.ColumnSpan="8" HorizontalAlignment="Left" Height="20" Margin="73,30,0,0" VerticalAlignment="Top" Width="20" Visibility="Hidden"/>
<Image x:Name="Demo" Grid.ColumnSpan="9" HorizontalAlignment="Left" Height="417" Margin="329,41,0,0" VerticalAlignment="Top" Width="852" Visibility="Hidden"/>
<TextBlock x:Name="Text_Demo" Grid.ColumnSpan="8" HorizontalAlignment="Left" Height="39" Margin="416,93,0,0" TextWrapping="Wrap" Text="Demo" VerticalAlignment="Top" Width="75" FontSize="24" Visibility="Hidden"/>
<TextBlock x:Name="Pferd_info" Grid.ColumnSpan="8" HorizontalAlignment="Left" Height="40" Margin="68,197,0,0" TextWrapping="Wrap" VerticalAlignment="Top" Width="262" FontSize="14" Visibility="Hidden">
<TextBlock.Background>
<SolidColorBrush Color="#FFC3CA36" Opacity="0.6"/>
</TextBlock.Background><Run Text="Das Pferd erhört den Angriff um 10%"/><LineBreak /><Run Text="Das Pferd zu Kaufen kostet 15 Drachnen"/></TextBlock>
<Button x:Name="Pferd_kaufen" Content="Kaufen" Grid.ColumnSpan="8" HorizontalAlignment="Left" Height="28" Margin="164,267,0,0" VerticalAlignment="Top" Width="70" Background="#FF2AC133" Opacity="0.75" Click="Pferd_kaufen_Click" Visibility="Collapsed"/>
<Image x:Name="Char_print" Grid.ColumnSpan="8" Margin="206,24,0,0" HorizontalAlignment="Left" Width="140" Height="127" VerticalAlignment="Top" Visibility="Collapsed"/>
<StackPanel x:Name="Stats_Name" Grid.ColumnSpan="8" HorizontalAlignment="Left" Height="202" Margin="97,237,0,0" VerticalAlignment="Top" Width="110" Visibility="Collapsed">
<TextBlock FontSize="18" Text="Stärke"/>
<TextBlock FontSize="18" Text="Geschick"/>
<TextBlock FontSize="18" Text="Intelligenz"/>
<TextBlock FontSize="18" Text="Vitalität"/>
<TextBlock FontSize="18" Text="Glück"/>
<TextBlock FontSize="18" Text="Charisma"/>
<TextBlock FontSize="18" Text="Rüstung"/>
</StackPanel>
<StackPanel x:Name="Stats_Werte" Grid.ColumnSpan="8" Margin="234,235,671,94" Visibility="Collapsed">
<TextBlock FontSize="18" x:Name="Stärke_count" Text="0"/>
<TextBlock FontSize="18" x:Name="Geschick_count" Text="0"/>
<TextBlock FontSize="18" x:Name="Intelligenz_count" Text="0"/>
<TextBlock FontSize="18" x:Name="Vitalität_count" Text="0"/>
<TextBlock FontSize="18" x:Name="Glück_count" Text="0"/>
<TextBlock FontSize="18" x:Name="Charisma_count" Text="0"/>
<TextBlock FontSize="18" x:Name="Rüstung_count" Text="0"/>
</StackPanel>
<Button x:Name="punkte_kaufen" Content="Attributspunkte Kaufen" Grid.ColumnSpan="8" HorizontalAlignment="Left" Margin="180,429,0,0" VerticalAlignment="Top" Height="29" Width="132" Background="#FFC17D1A" Foreground="#FF0C062B" Click="punkte_kaufen_Click" Visibility="Collapsed"/>
<StackPanel x:Name="Attributspunkte_erhöhen" Grid.ColumnSpan="8" Margin="199,237,771,106" Visibility="Collapsed">
<Button x:Name="Plus_Stärke" Content="+" Height="24" Click="Plus_Stärke_Click"/>
<Button x:Name="Plus_Geschick" Content="+" Height="24" Click="Plus_Geschick_Click"/>
<Button x:Name="Plus_Intelligenz" Content="+" Height="24" Click="Plus_Intelligenz_Click"/>
<Button x:Name="Plus_Vitalität" Content="+" Height="24" Click="Plus_Vitalität_Click"/>
<Button x:Name="Plus_Glück" Content="+" Height="24" Click="Plus_Glück_Click"/>
<Button x:Name="Plus_Charisma" Content="+" Height="24" Click="Plus_Charisma_Click"/>
</StackPanel>
<StackPanel x:Name="Attributspunkte_verringern" Grid.ColumnSpan="8" Margin="335,236,635,106" Visibility="Collapsed">
<Button x:Name="Minus_Stärke" IsEnabled="False" Content="-" Height="24" Click="Minus_Stärke_Click"/>
<Button x:Name="Minus_Geschick" IsEnabled="False" Content="-" Height="24" Click="Minus_Geschick_Click"/>
<Button x:Name="Minus_Intelligenz" IsEnabled="False" Content="-" Height="24" Click="Minus_Intelligenz_Click"/>
<Button x:Name="Minus_Vitalität" IsEnabled="False" Content="-" Height="24" Click="Minus_Vitalität_Click"/>
<Button x:Name="Minus_Glück" IsEnabled="False" Content="-" Height="24" Click="Minus_Glück_Click"/>
<Button x:Name="Minus_Charisma" IsEnabled="False" Content="-" Height="24" Click="Minus_Charisma_Click"/>
</StackPanel>
<Button x:Name="Punkte_Verteilung" Content="Kauf Abschließen" Grid.ColumnSpan="8" HorizontalAlignment="Left" Margin="310,429,0,0" VerticalAlignment="Top" Height="29" Width="132" Background="#FFC17D1A" Foreground="#FF0C062B" Click="Punkte_Verteilung_Click_1" Visibility="Collapsed"/>
<Button x:Name="zurück_zur_Taverne" Content="zurück Gehen" Grid.ColumnSpan="8" HorizontalAlignment="Left" Height="25" Margin="906,35,0,0" VerticalAlignment="Top" Width="84" Foreground="#FFAAAED0" Click="zurück_zur_Taverne_Click" Visibility="Collapsed">
<Button.Background>
<LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
<GradientStop Color="Black"/>
<GradientStop Color="#FFCA2F2F" Offset="1"/>
</LinearGradientBrush>
</Button.Background>
</Button>
<Button x:Name="zum_Questgeber" Content="" Grid.ColumnSpan="8" HorizontalAlignment="Left" Height="260" Margin="49,174,0,0" VerticalAlignment="Top" Width="280" Click="zum_Questgeber_Click" Visibility="Collapsed">
<Button.Background>
<SolidColorBrush Color="#FFDDDDDD" Opacity="0.015"/>
</Button.Background>
</Button>
<Button x:Name="zum_Barkeeper" Content="" Grid.ColumnSpan="8" HorizontalAlignment="Left" Height="211" Margin="705,59,0,0" VerticalAlignment="Top" Width="243" Click="zum_Barkeeper_Click" Visibility="Collapsed">
<Button.Background>
<SolidColorBrush Color="Gray" Opacity="0"/>
</Button.Background>
</Button>
<TextBlock x:Name="Charakter_Stats_name" Height="24" Text="Charakter Stats" FontSize="20" Grid.ColumnSpan="8" Margin="199,196,0,0" VerticalAlignment="Top" HorizontalAlignment="Left" Width="137" Visibility="Collapsed"/>
<TextBlock x:Name="Pferd_gekauft" Grid.ColumnSpan="8" HorizontalAlignment="Left" Margin="165,270,0,0" TextWrapping="Wrap" FontSize="18" Text="Gekauft" VerticalAlignment="Top" Height="25" Width="69" Background="#FF2AC133" Opacity="0.75" Visibility="Hidden"/>
<TextBlock x:Name="Kosten_Drachnen_Attribut" Grid.ColumnSpan="8" HorizontalAlignment="Left" Margin="96,428,0,0" TextWrapping="Wrap" Text="" VerticalAlignment="Top" Height="30" Width="100" Visibility="Collapsed"/>
<Image x:Name="Drachnen_attribut" Grid.ColumnSpan="8" HorizontalAlignment="Left" Height="30" Margin="60,428,0,0" VerticalAlignment="Top" Width="30" Visibility="Collapsed"/>
<TextBlock x:Name="Kosten_kupfer_Attribut" Grid.ColumnSpan="8" HorizontalAlignment="Left" Margin="229,428,0,0" TextWrapping="Wrap" Text="" VerticalAlignment="Top" Height="30" Width="100" Visibility="Collapsed"/>
<Image x:Name="Kupfer_attribut" Grid.ColumnSpan="8" HorizontalAlignment="Left" Height="30" Margin="196,428,0,0" VerticalAlignment="Top" Width="30" Visibility="Collapsed"/>
<Image x:Name="Fehlermeldung" Grid.ColumnSpan="8" HorizontalAlignment="Left" Height="395" Margin="491,10,0,0" VerticalAlignment="Top" Width="429" Visibility="Collapsed"/>
<Button x:Name="Abbrechen" Content="Abbrechen?" Grid.ColumnSpan="8" HorizontalAlignment="Left" Height="29" Margin="650,419,0,0" VerticalAlignment="Top" Width="126" Background="#FFDE1717" Foreground="#FF102A94" Click="Abbrechen_Click" Visibility="Collapsed"/>
<Image x:Name="Gegner_Slot_1" Grid.ColumnSpan="8" HorizontalAlignment="Left" Height="250" Margin="31,118,0,0" VerticalAlignment="Top" Width="200" Visibility="Hidden"/>
<Image x:Name="Gegner_Slot_2" Grid.ColumnSpan="8" HorizontalAlignment="Left" Height="250" Margin="394,118,0,0" VerticalAlignment="Top" Width="200" Visibility="Hidden"/>
<Image x:Name="Zufall_Slot" Grid.ColumnSpan="8" HorizontalAlignment="Left" Height="250" Margin="758,118,0,0" VerticalAlignment="Top" Width="200" Visibility="Hidden"/>
<Button x:Name="Gegner_Wahl1" Content="Auswählen" Grid.ColumnSpan="8" HorizontalAlignment="Left" Height="35" Margin="73,383,0,0" VerticalAlignment="Top" Width="110" Background="#FF60DA1D" Click="Gegner_Wahl1_Click" Visibility="Hidden"/>
<Button x:Name="Gegner_Wahl2" Content="Auswählen" Grid.ColumnSpan="8" HorizontalAlignment="Left" Height="35" Margin="442,383,0,0" VerticalAlignment="Top" Width="110" Background="#FF60DA1D" Click="Gegner_Wahl2_Click" Visibility="Hidden"/>
<Button x:Name="Zufalls_Wahl" Content="Zufall" Grid.ColumnSpan="8" HorizontalAlignment="Left" Height="35" Margin="810,383,0,0" VerticalAlignment="Top" Width="110" Background="#FF60DA1D" Click="Zufalls_Wahl_Click" Visibility="Hidden"/>
<Image x:Name="Gegner_Seite" Grid.ColumnSpan="8" HorizontalAlignment="Left" Height="200" Margin="739,98,0,0" VerticalAlignment="Top" Width="200" Visibility="Collapsed"/>
<Image x:Name="Spieler_Seite" Grid.ColumnSpan="8" HorizontalAlignment="Left" Height="200" Margin="49,99,0,0" VerticalAlignment="Top" Width="200" Visibility="Collapsed"/>
<ProgressBar x:Name="Gegner_LP_Balken" Grid.ColumnSpan="8" HorizontalAlignment="Left" Height="20" Margin="778,311,0,0" VerticalAlignment="Top" Width="125" Background="#FFE02222" Visibility="Collapsed"/>
<ProgressBar x:Name="Spieler_LP_Balken" Grid.ColumnSpan="8" HorizontalAlignment="Left" Height="20" Margin="90,311,0,0" VerticalAlignment="Top" Width="125" Background="#FFE02222" Visibility="Collapsed"/>
<TextBlock x:Name="Spieler_LP_counter" Grid.ColumnSpan="8" HorizontalAlignment="Left" Margin="230,311,0,0" TextWrapping="Wrap" Text="" VerticalAlignment="Top" Width="50" Height="20" Visibility="Collapsed" Background="#FFECDEDE"/>
<TextBlock x:Name="Gegner_LP_counter" Grid.ColumnSpan="8" HorizontalAlignment="Left" Margin="923,311,0,0" TextWrapping="Wrap" Text="" VerticalAlignment="Top" Width="50" Height="20" Visibility="Collapsed" Background="#FFE2DCDC"/>
<Button x:Name="ATK" Content="Angreifen" Grid.ColumnSpan="8" HorizontalAlignment="Left" Height="70" Margin="50,399,0,0" VerticalAlignment="Top" Width="70" Background="#FFD8A313" Click="ATK_Click" Visibility="Collapsed"/>
<Button x:Name="Block" Content="Blocken" Grid.ColumnSpan="8" HorizontalAlignment="Left" Height="70" Margin="152,400,0,0" VerticalAlignment="Top" Width="70" Background="#FF908686" Click="Block_Click" Visibility="Collapsed"/>
<Button x:Name="Aufgeben" Content="Aufgeben" Grid.ColumnSpan="8" HorizontalAlignment="Left" Height="34" Margin="865,448,0,0" VerticalAlignment="Top" Width="83" BorderBrush="White" Background="White" Click="Aufgeben_Click" Visibility="Collapsed"/>
<Button x:Name="weiter" Content="Weiter" Grid.ColumnSpan="8" HorizontalAlignment="Left" Height="42" Margin="429,423,0,0" VerticalAlignment="Top" Width="136" Background="#FFB3D426" FontSize="30" Click="weiter_Click" Visibility="Collapsed"/>
<TextBlock x:Name="Spieler_lvl_anzeige" Grid.ColumnSpan="8" HorizontalAlignment="Left" Height="27" Margin="49,40,0,0" TextWrapping="Wrap" Text="" VerticalAlignment="Top" Width="85" Background="#FFFB5A5A" Foreground="#FF3530C3" Visibility="Collapsed"/>
<TextBlock x:Name="Gegner_lvl_anzeige" Grid.ColumnSpan="8" HorizontalAlignment="Left" Height="27" Margin="805,40,0,0" TextWrapping="Wrap" Text="" VerticalAlignment="Top" Width="85" Background="#FFFB5A5A" Foreground="#FF3530C3" Visibility="Collapsed"/>
<Image x:Name="Gewinn_Drachnen" Grid.ColumnSpan="8" HorizontalAlignment="Left" Height="40" Margin="31,112,0,0" VerticalAlignment="Top" Width="40" Visibility="Collapsed"/>
<Image x:Name="Gewinn_Kupfer" Grid.ColumnSpan="8" HorizontalAlignment="Left" Height="40" Margin="31,166,0,0" VerticalAlignment="Top" Width="40" Visibility="Collapsed"/>
<TextBlock x:Name="Gewinn_Drach" Grid.ColumnSpan="8" HorizontalAlignment="Left" Height="40" Margin="114,112,0,0" TextWrapping="Wrap" Text="" VerticalAlignment="Top" Width="80" Background="#FFD6A55E" Visibility="Collapsed"/>
<TextBlock x:Name="Gewinn_Kupf" Grid.ColumnSpan="8" HorizontalAlignment="Left" Height="40" Margin="114,166,0,0" TextWrapping="Wrap" Text="" VerticalAlignment="Top" Width="80" Background="#FFD6A55E" Visibility="Collapsed"/>
<Image x:Name="EXP_Logo" Grid.ColumnSpan="8" HorizontalAlignment="Left" Height="40" Margin="31,227,0,0" VerticalAlignment="Top" Width="40" Visibility="Collapsed"/>
<TextBlock x:Name="EXP_Gewinn" Grid.ColumnSpan="8" HorizontalAlignment="Left" Height="40" Margin="114,227,0,0" TextWrapping="Wrap" Text="" VerticalAlignment="Top" Width="80" Background="#FFD6A55E" Visibility="Collapsed"/>
<ProgressBar x:Name="LVL_Balken" Grid.ColumnSpan="8" HorizontalAlignment="Left" Height="20" Margin="31,79,0,0" VerticalAlignment="Top" Width="50" Visibility="Hidden"/>
<Image x:Name="EXP_Bild" Grid.ColumnSpan="8" HorizontalAlignment="Left" Height="20" Margin="10,79,0,0" VerticalAlignment="Top" Width="20" Visibility="Hidden"/>
<TextBlock x:Name="lvl" Grid.ColumnSpan="8" HorizontalAlignment="Left" Margin="86,81,0,0" TextWrapping="Wrap" Text="" VerticalAlignment="Top" Height="19" Width="42" Visibility="Hidden"/>
<TextBlock x:Name="Fehler_Stall" Grid.ColumnSpan="8" HorizontalAlignment="Left" Height="50" Margin="438,352,0,0" TextWrapping="Wrap" Text="Fehler" VerticalAlignment="Top" Width="102" FontSize="30" Background="#FFE2AD1B" Foreground="#FF881515" Visibility="Collapsed"/>
<Button x:Name="D_ATK" Content="Angreifen" Grid.ColumnSpan="8" HorizontalAlignment="Left" Height="70" Margin="50,399,0,0" VerticalAlignment="Top" Width="70" Background="#FFD8A313" Click="D_ATK_Click" Visibility="Collapsed"/>
<Button x:Name="D_Block" Content="Blocken" Grid.ColumnSpan="8" HorizontalAlignment="Left" Height="70" Margin="152,400,0,0" VerticalAlignment="Top" Width="70" Background="#FF908686" Click="D_Block_Click" Visibility="Collapsed"/>
<Button x:Name="Challange" Content="Challange?" Grid.ColumnSpan="8" HorizontalAlignment="Left" Height="34" Margin="442,414,0,0" VerticalAlignment="Top" Width="98" Background="#FFE40F0F" Foreground="#FFE6FF04" Click="Challange_Click" Visibility="Collapsed"/>
<Image x:Name="Waffenauslage" Grid.ColumnSpan="8" HorizontalAlignment="Left" Height="150" Margin="60,130,0,0" VerticalAlignment="Top" Width="150" Visibility="Collapsed"/>
<Image x:Name="Rüstungsauslage" Grid.ColumnSpan="8" HorizontalAlignment="Left" Height="150" Margin="758,130,0,0" VerticalAlignment="Top" Width="150" Visibility="Collapsed"/>
<Button x:Name="Waffekaufen" IsEnabled="False" Content="Kaufen?" Grid.ColumnSpan="8" HorizontalAlignment="Left" Margin="100,300,0,0" VerticalAlignment="Top" Height="31" Width="74" Background="#FF3C3C58" Foreground="#FFABFF00" Click="Waffekaufen_Click" BorderBrush="#FF4C3D3D" Visibility="Hidden"/>
<Button x:Name="Rüstungkaufen" IsEnabled="False" Content="Kaufen?" Grid.ColumnSpan="8" HorizontalAlignment="Left" Margin="798,300,0,0" VerticalAlignment="Top" Height="30" Width="74" Background="#FF39394E" Foreground="#FFABFF00" Click="Rüstungkaufen_Click" Visibility="Collapsed" BorderBrush="#FF544D4D"/>
<Image x:Name="Spieler_waffe" Grid.ColumnSpan="8" HorizontalAlignment="Left" Height="127" Margin="68,24,0,0" VerticalAlignment="Top" Width="128" Visibility="Collapsed"/>
<Image x:Name="Spieler_rüstung" Grid.ColumnSpan="8" HorizontalAlignment="Left" Height="127" Margin="348,24,0,0" VerticalAlignment="Top" Width="128" Visibility="Collapsed"/>
<TextBlock x:Name="Details_rüstung_shop" Grid.ColumnSpan="8" HorizontalAlignment="Left" Margin="790,345,0,0" TextWrapping="Wrap" Text="" VerticalAlignment="Top" Height="90" Width="100" Background="#FF8C7C7C" Visibility="Collapsed"/>
<TextBlock x:Name="Details_waffe_shop" Grid.ColumnSpan="8" HorizontalAlignment="Left" Margin="86,345,0,0" TextWrapping="Wrap" Text="" VerticalAlignment="Top" Height="90" Width="100" Background="#FF8C7C7C" Visibility="Hidden"/>
<TextBlock x:Name="preis_händler_schild" Grid.ColumnSpan="8" HorizontalAlignment="Left" Margin="452,418,0,0" TextWrapping="Wrap" Text="" VerticalAlignment="Top" Height="30" Width="78" OpacityMask="Black" Background="#FFAD801B" Visibility="Collapsed"/>
<TextBlock x:Name="meister" Grid.ColumnSpan="8" HorizontalAlignment="Left" Height="40" Margin="640,35,0,0" TextWrapping="Wrap" Text="Meisterung" VerticalAlignment="Top" Width="130" FontSize="25" Visibility="Collapsed"/>
<TextBlock x:Name="meisterwaffen" Grid.ColumnSpan="8" HorizontalAlignment="Left" Height="40" Margin="515,88,0,0" TextWrapping="Wrap" Text="" VerticalAlignment="Top" Width="140" FontSize="15" Visibility="Collapsed"/>
<TextBlock x:Name="meisterrüstung" Grid.ColumnSpan="8" HorizontalAlignment="Left" Height="40" Margin="760,88,0,0" TextWrapping="Wrap" Text="" VerticalAlignment="Top" Width="160" FontSize="15" Visibility="Collapsed"/>
<Button x:Name="meisterwaffen_add" IsEnabled="False" Content="Waffen Training?" Grid.ColumnSpan="8" HorizontalAlignment="Left" Margin="530,126,0,0" VerticalAlignment="Top" Height="40" Width="100" FontSize="13" Background="#FF77D61D" Click="meisterwaffen_add_Click" Visibility="Collapsed"/>
<Button x:Name="meisterrüstung_add" IsEnabled="False" Content="Rüstungs Training?" Grid.ColumnSpan="8" HorizontalAlignment="Left" Margin="775,126,0,0" VerticalAlignment="Top" Height="40" Width="115" FontSize="13" Background="#FF77D61D" Click="meisterrüstung_add_Click" Visibility="Collapsed"/>
<TextBlock x:Name="kosten_training" Grid.ColumnSpan="8" HorizontalAlignment="Left" Margin="650,131,0,0" TextWrapping="Wrap" Text="" VerticalAlignment="Top" Height="30" Width="120" Visibility="Collapsed"/>
<TextBlock x:Name="speicherunginfo" Grid.ColumnSpan="8" HorizontalAlignment="Left" Height="39" Margin="890,93,0,0" TextWrapping="Wrap" Text="Speichern erfolgreich" VerticalAlignment="Top" Width="66" Background="#FF859FA4" Opacity="0.6" Visibility="Collapsed"/>
<Button x:Name="Spielladen" Content="Spielstandladen" Margin="500,413,0,0" Foreground="#FFAAAED0" FontFamily="Segoe UI Variable Text Semibold" Click="Spielstandladen" Grid.Column="7" RenderTransformOrigin="0.49,0.484" Height="29" VerticalAlignment="Top" HorizontalAlignment="Left" Width="98" Visibility="Hidden">
<Button.Background>
<LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
<GradientStop Color="Black"/>
<GradientStop Color="#FFCA2F2F" Offset="1"/>
</LinearGradientBrush>
</Button.Background>
</Button>
<StackPanel x:Name="barinfo" Grid.ColumnSpan="8" HorizontalAlignment="Left" Height="346" Margin="60,107,0,0" VerticalAlignment="Top" Width="100" Opacity="0.75" Visibility="Collapsed">
<Button x:Name="questinfo" Content="Quest" Height="35" FontSize="18" Click="questinfo_Click" />
<Button x:Name="kampfinfo" Content="Kampf" Height="35" FontSize="18" Click="kampfinfo_Click" />
<Button x:Name="Ende_des_Kampfes" Content="Kampf Ende" Height="35" FontSize="17" Click="Ende_des_Kampfes_Click" />
<Button x:Name="währung" Content="Währung" Height="35" Click="währung_Click" />
<Button x:Name="ladeninfo" Content="Laden" Height="35" FontSize="18" Click="ladeninfo_Click" />
<Button x:Name="charinfo" Content="Charakter" Height="35" FontSize="18" Click="charinfo_Click" />
<Button x:Name="attributinfo" Content="Attribute 1" Height="35" FontSize="18" Click="attributinfo_Click"/>
<Button x:Name="attributinfo2" Content="Attribute 2" Height="35" FontSize="18" Click="attributinfo2_Click" />
</StackPanel>
<TextBlock x:Name="infoblock" Grid.ColumnSpan="8" HorizontalAlignment="Left" Height="300" Margin="570,118,0,0" TextWrapping="Wrap" Text="" VerticalAlignment="Top" Width="350" Background="#FF828080" Opacity="0.8" FontSize="15" Visibility="Collapsed"/>
</Grid>
</Window>

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,427 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
<data name="Dorf_" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Dorf.jpeg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Questgeber_" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Questgeber_.jpg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Taverne_" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Taverne_.jpg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Trankhändler_" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Trankhändler.jpeg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Waffenhändler_" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Waffenhändler.jpeg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Elder-Ebene" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Elder-Ebene.jpg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Elder-Fight-Char-Auswahl" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Elder-Fight-Char-Auswahl.jpg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Elder-Gebirge" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Elder-Gebirge.jpg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Elder-River" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Elder-River.jpg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Elder-Waypoint" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Elder-Waypoint.jpg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Elder-Winter" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Elder-Winter.jpg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Main" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Main.jpg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Nachthimmel" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Nachthimmel.jpg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="skyrim-forest" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\skyrim-forest.jpg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Abend-Drache" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Abend-Drache.jpg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Drache_Kopf_1" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Drache_Kopf_1.png;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Drache-Feuer" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Drache-Feuer.jpg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Ender-Drache" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Ender-Drache.jpg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Nacht-drache" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Nacht-drache.jpg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Schatzhorter-Drache" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Schatzhorter-Drache.jpg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="taskleiste" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Leiste.jpg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Kupfermünzenbeutel" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Kupfermünzenbeutel.jpeg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Drachnen" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Drachnen_.jpg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Demo_" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Demo.jpeg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Stall" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Stall.jpeg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Hunter_Profil" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Hunter_Profil.jpeg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Krieger_Profil" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Krieger_Profil.jpeg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Magier_Profil" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Magier_Profil.jpeg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Barkepeer" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Barkepeer.jpeg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Kriegerrüstungset_1" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Kriegerrüstungset_1.jpeg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Kriegerrüstungset_2" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Kriegerrüstungset_2.jpeg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Kriegerrüstungset_3" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Kriegerrüstungset_3.jpeg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Hunterrüstungset_1" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Hunterrüstungset_1.jpeg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Hunterrüstungset_2" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Hunterrüstungset_2.jpeg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Hunterrüstungset_3" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Hunterrüstungset_3.jpeg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Fehler" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Fehler.jpeg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Charakterinfo" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Charakterinfo.jpg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Weiß-magierin" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Weiß-magierin.jpeg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Held" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Held.jpeg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Ritter" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Ritter.jpeg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Magier-mit-hörner" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Magier-mit-hörner.jpeg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="magier-gegner" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\magier-gegner.jpeg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Maskierter-magier" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Maskierter-magier.jpeg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Skelett-gruppe" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Skelett-gruppe.jpeg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Einfaches-Skelett" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Einfaches-Skelett.jpeg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Skelett-mit-waffe" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Skelett-mit-waffe.jpeg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Schnee-Riese" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Schnee-Riese.jpeg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Fünf-Riesen" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Fünf-Riesen.jpeg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Drei-Riesen" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Drei-Riesen.jpeg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Vampir" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Vampir.jpeg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Draug-2" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Draug-2.jpeg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Draug-1" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Draug-1.jpeg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Necromant" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Necromant.jpeg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Berglöwe" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Berglöwe.jpeg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Schwarzer_Drache" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Schwarzer_Drache.jpeg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Zufall" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Zufall.jpeg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="elder-scrolls-6-titel" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\elder-scrolls-6-titel.jpg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Niederlage" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Niederlage.jpg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Sieg" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Sieg.jpeg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="EXP" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\EXP.jpeg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Dungeon" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Dungeon.jpeg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Dungeon_1" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Dungeon_1.jpeg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Dungeon_eingang" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Dungeon_eingang.jpeg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Katakombe" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Katakombe.jpeg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Verlies" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Verlies.jpeg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="verfallen" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\verfallen.jpeg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Keller" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Keller.jpeg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Gewölbe" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Gewölbe.jpeg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Höhle" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Höhle.jpeg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="keine_Rüstung" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\keine_Rüstung.jpg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="no_Weapon" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\no_Weapon.jpeg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="empty_slot" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\empty_slot.jpeg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Magierrüstungset_1" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Magierrüstungset_1.jpeg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Magierrüstungset_2" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Magierrüstungset_2.jpeg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Magierrüstungset_3" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Magierrüstungset_3.jpeg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Magierrüstungset_4" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Magierrüstungset_4.jpeg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Magierrüstungset_5" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Magierrüstungset_5.jpeg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Hunterrüstungset_4" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Hunterrüstungset_4.jpeg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Hunterrüstungset_5" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Hunterrüstungset_5.jpeg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Kriegerrüstungset_4" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Kriegerrüstungset_4.jpeg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Kriegerrüstungset_5" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Kriegerrüstungset_5.jpeg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Schwert_2" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Schwert_2.jpg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Schwert_1" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Schwert_1.jpg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Dolch_4" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Dolch_4.jpg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Dolch_3" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Dolch_3.jpg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Dolch_2" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Dolch_2.jpg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Dolch_1" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Dolch_1.jpg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Bogen_1" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Bogen_1.jpg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Dolch_5" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Dolch_5.jpeg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Axt_1" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Axt_1.jpeg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Axt_2" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Axt_2.jpeg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Axt_3" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Axt_3.jpeg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Dolch_6" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Dolch_6.jpeg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Stab_4" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Stab_4.jpeg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Stab_3" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Stab_3.jpeg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Stab_2" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Stab_2.jpeg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Bogen_3" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Bogen_3.jpeg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Stab_1" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Stab_1.jpeg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Bogen_2" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Bogen_2.jpeg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Stab_5" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Stab_5.jpeg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Bogen_4" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Bogen_4.jpeg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Bogen_5" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Bogen_5.jpeg;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
</root>

Binary file not shown.

After

Width:  |  Height:  |  Size: 440 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 110 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 144 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 100 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 222 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 183 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 369 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 160 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 133 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 281 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 214 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 143 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 205 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 307 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 288 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 288 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 288 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 249 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 147 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 244 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 227 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 239 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 314 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 214 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 206 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 188 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 229 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 273 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 210 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 178 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 194 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 44 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 257 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 103 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 62 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 352 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 62 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 419 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 197 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 219 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 293 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 263 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 215 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 197 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 200 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 227 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 188 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 210 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 238 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 222 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 233 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 174 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 206 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 235 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 170 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 230 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 235 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 192 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 332 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 188 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 142 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 250 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 222 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 213 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 215 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 258 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1012 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 175 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 73 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 54 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 129 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 213 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 176 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 264 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 413 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 189 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 177 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 207 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 166 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 258 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 167 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 184 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 104 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 147 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 143 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 136 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 226 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 242 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 438 KiB

Some files were not shown because too many files have changed in this diff Show More