diff --git a/medias/default/enemy.xml b/medias/default/enemy.xml
index 5874687..db1fd7f 100755
--- a/medias/default/enemy.xml
+++ b/medias/default/enemy.xml
@@ -3,7 +3,7 @@
enemy
3
- http://wiki.ecomonde.land/lib/exe/fetch.php?media=wiki:loup_garrou.jpg
- http://wiki.ecomonde.land/doku.php?id=wiki:ennemies:loups_garrous
+
+ #
diff --git a/play/boss_wiki.php b/play/boss_wiki.php
new file mode 100644
index 0000000..053302a
--- /dev/null
+++ b/play/boss_wiki.php
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/play/enemy.php b/play/enemy.php
index 501ffce..b48720f 100644
--- a/play/enemy.php
+++ b/play/enemy.php
@@ -21,7 +21,7 @@ foreach($xml->entry as $entry) {
-
+
diff --git a/play/enemy_wiki.php b/play/enemy_wiki.php
new file mode 100644
index 0000000..9286194
--- /dev/null
+++ b/play/enemy_wiki.php
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/play/index.php b/play/index.php
index 45e4de5..ff55e71 100755
--- a/play/index.php
+++ b/play/index.php
@@ -43,11 +43,11 @@
-
+
-
+
@@ -164,6 +164,84 @@
+
+
+
+
+
+
+
+
diff --git a/play/new_boss.php b/play/new_boss.php
new file mode 100644
index 0000000..ba1bbbe
--- /dev/null
+++ b/play/new_boss.php
@@ -0,0 +1,22 @@
+entry->nom = $boss_name;
+
+$xml->entry->img = "http://wiki.ecomonde.land/lib/exe/fetch.php?media=wiki:".$boss_type.".jpg";
+
+$xml->entry->url = "http://wiki.ecomonde.land/doku.php?id=wiki:boss:".$boss_type;
+
+$xml->asXml('../medias/'.$hash.'/enemy/'.$boss_name.'.xml');
+
+header("location: index.php");
+?>
diff --git a/play/new_enemy.php b/play/new_enemy.php
new file mode 100644
index 0000000..c3e5715
--- /dev/null
+++ b/play/new_enemy.php
@@ -0,0 +1,22 @@
+entry->nom = $enemy_name;
+
+$xml->entry->img = "http://wiki.ecomonde.land/lib/exe/fetch.php?media=wiki:".$enemy_type.".jpg";
+
+$xml->entry->url = "http://wiki.ecomonde.land/doku.php?id=wiki:ennemies:".$enemy_type;
+
+$xml->asXml('../medias/'.$hash.'/enemy/'.$enemy_name.'.xml');
+
+header("location: index.php");
+?>