finish
This commit is contained in:
parent
906a934a1d
commit
ed110361a2
9 changed files with 300 additions and 473 deletions
BIN
assets/audio/bonnanniv.mp3
Normal file
BIN
assets/audio/bonnanniv.mp3
Normal file
Binary file not shown.
BIN
assets/audio/got.mp3
Normal file
BIN
assets/audio/got.mp3
Normal file
Binary file not shown.
BIN
assets/fonts/troika.otf
Normal file
BIN
assets/fonts/troika.otf
Normal file
Binary file not shown.
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 13 KiB |
88
index.html
88
index.html
|
@ -5,6 +5,7 @@
|
|||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<script src="phaser-arcade-physics.min.js"></script>
|
||||
<link rel="stylesheet" type="text/css" href="css/colors.css">
|
||||
<title>À la gloire des jeux vidéo</title>
|
||||
<style type="text/css">
|
||||
body {
|
||||
margin: 0;
|
||||
|
@ -19,10 +20,22 @@
|
|||
bottom: 0;
|
||||
left: 0;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Troika';
|
||||
src: url('./assets/fonts/troika.otf');
|
||||
}
|
||||
|
||||
h1 {
|
||||
color: #E57FD2;
|
||||
font-family: 'Troika', sans-serif;
|
||||
text-align: center;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<h1 id="title">Il faudra bien ramasser ces pièces</h1>
|
||||
<script>
|
||||
const WINDOW_WIDTH = 800;
|
||||
const WINDOW_HEIGHT = 600;
|
||||
|
@ -48,7 +61,6 @@
|
|||
}
|
||||
};
|
||||
|
||||
var player;
|
||||
var platforms;
|
||||
var sol;
|
||||
var cursors;
|
||||
|
@ -75,6 +87,9 @@
|
|||
this.load.spritesheet('dude', 'assets/dude-cropped.png', { frameWidth: 32, frameHeight: 42 });
|
||||
this.load.spritesheet('coin', 'assets/coin-16x16x4.png', { frameWidth: 16, frameHeight: 16 });
|
||||
this.load.spritesheet('trophy', 'assets/trophy-cropped.png', { frameWidth: 20, frameHeight: 29 });
|
||||
|
||||
this.load.audio('got', 'assets/audio/got.mp3');
|
||||
this.load.audio('anniv', 'assets/audio/bonnanniv.mp3');
|
||||
}
|
||||
|
||||
function create() {
|
||||
|
@ -163,9 +178,9 @@
|
|||
|
||||
|
||||
// The player and its settings
|
||||
player = this.physics.add.sprite(100, 450, 'dude');
|
||||
player.setBounce(0.12);
|
||||
player.setCollideWorldBounds(true);
|
||||
this.player = this.physics.add.sprite(100, 450, 'dude');
|
||||
this.player.setBounce(0.12);
|
||||
this.player.setCollideWorldBounds(true);
|
||||
|
||||
// Our player animations, turning, walking left and walking right.
|
||||
this.anims.create({
|
||||
|
@ -202,32 +217,42 @@
|
|||
this.emitter.startFollow(player);
|
||||
}
|
||||
|
||||
// function collectTrophy(player, trophy) {
|
||||
// trophy.disableBody(true, true);
|
||||
// camera.shake(200, 0.01);
|
||||
// this.emitter = this.particles.createEmitter({
|
||||
// speed: 120,
|
||||
// scale: { start: 0.8, end: 0 },
|
||||
// angle: { min: 80, max: 280 },
|
||||
// maxParticles: 20,
|
||||
// blendMode: 'ADD'
|
||||
// });
|
||||
// this.emitter.startFollow(player);
|
||||
// }
|
||||
|
||||
// The player collisions
|
||||
this.physics.add.collider(player, platforms);
|
||||
this.physics.add.overlap(player, coins, collectCoin, null, this);
|
||||
this.physics.add.collider(this.player, platforms);
|
||||
this.physics.add.overlap(this.player, coins, collectCoin, null, this);
|
||||
//this.physics.add.overlap(player, coins, collectTrophy, null, this);
|
||||
|
||||
// Input Events
|
||||
cursors = this.input.keyboard.createCursorKeys();
|
||||
|
||||
// Camera
|
||||
camera.startFollow(player);
|
||||
camera.startFollow(this.player);
|
||||
camera.setBounds(0, 0, WORLD_WIDTH, WORLD_HEIGHT);
|
||||
|
||||
|
||||
// Audio
|
||||
this.musicGoT = this.sound.add('got', {
|
||||
mute: false,
|
||||
volume: 0.8,
|
||||
rate: 1,
|
||||
detune: 0,
|
||||
seek: 0,
|
||||
loop: true,
|
||||
delay: 5000
|
||||
});
|
||||
this.musicAnniv = this.sound.add('anniv', {
|
||||
mute: false,
|
||||
volume: 0.8,
|
||||
rate: 1,
|
||||
detune: 0,
|
||||
seek: 0,
|
||||
loop: false,
|
||||
delay: 2000
|
||||
});
|
||||
|
||||
this.musicGoT.play();
|
||||
this.musicAnniv.play();
|
||||
this.musicAnniv.pause();
|
||||
}
|
||||
|
||||
function update() {
|
||||
|
@ -238,26 +263,31 @@
|
|||
// WINDOW_HEIGHT);
|
||||
//this.spriteLeSol.setOriginFromFrame();
|
||||
|
||||
// VICTORY
|
||||
if (coins.countActive() == 0) {
|
||||
console.log("All done!");
|
||||
this.musicGoT.stop();
|
||||
this.musicAnniv.resume();
|
||||
this.physics.shutdown();
|
||||
document.getElementById("title").innerHTML = "Bon anniversaire !!!";
|
||||
}
|
||||
|
||||
// Keyboard
|
||||
if (cursors.left.isDown) {
|
||||
player.setVelocityX(-200);
|
||||
this.player.setVelocityX(-200);
|
||||
|
||||
player.anims.play('left', true);
|
||||
this.player.anims.play('left', true);
|
||||
} else if (cursors.right.isDown) {
|
||||
player.setVelocityX(200);
|
||||
this.player.setVelocityX(200);
|
||||
|
||||
player.anims.play('right', true);
|
||||
this.player.anims.play('right', true);
|
||||
} else {
|
||||
player.setVelocityX(0);
|
||||
this.player.setVelocityX(0);
|
||||
|
||||
player.anims.play('turn');
|
||||
this.player.anims.play('turn');
|
||||
}
|
||||
|
||||
if (cursors.up.isDown && player.body.touching.down) {
|
||||
player.setVelocityY(-330);
|
||||
if (cursors.up.isDown && this.player.body.touching.down) {
|
||||
this.player.setVelocityY(-330);
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
|
298
package-lock.json
generated
298
package-lock.json
generated
|
@ -1,298 +0,0 @@
|
|||
{
|
||||
"name": "maman",
|
||||
"version": "1.0.0",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
"@babel/parser": {
|
||||
"version": "7.4.5",
|
||||
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.4.5.tgz",
|
||||
"integrity": "sha512-9mUqkL1FF5T7f0WDFfAoDdiMVPWsdD1gZYzSnaXsxUCUqzuch/8of9G3VUSNiZmMBoRxT3neyVsqeiL/ZPcjew=="
|
||||
},
|
||||
"argparse": {
|
||||
"version": "1.0.10",
|
||||
"resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
|
||||
"integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==",
|
||||
"requires": {
|
||||
"sprintf-js": "~1.0.2"
|
||||
}
|
||||
},
|
||||
"big.js": {
|
||||
"version": "5.2.2",
|
||||
"resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz",
|
||||
"integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ=="
|
||||
},
|
||||
"bluebird": {
|
||||
"version": "3.5.5",
|
||||
"resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.5.5.tgz",
|
||||
"integrity": "sha512-5am6HnnfN+urzt4yfg7IgTbotDjIT/u8AJpEt0sIU9FtXfVeezXAPKswrG+xKUCOYAINpSdgZVDU6QFh+cuH3w=="
|
||||
},
|
||||
"catharsis": {
|
||||
"version": "0.8.10",
|
||||
"resolved": "https://registry.npmjs.org/catharsis/-/catharsis-0.8.10.tgz",
|
||||
"integrity": "sha512-l2OUaz/3PU3MZylspVFJvwHCVfWyvcduPq4lv3AzZ2pJzZCo7kNKFNyatwujD7XgvGkNAE/Jhhbh2uARNwNkfw==",
|
||||
"requires": {
|
||||
"lodash": "^4.17.11"
|
||||
}
|
||||
},
|
||||
"dts-dom": {
|
||||
"version": "3.3.0",
|
||||
"resolved": "https://registry.npmjs.org/dts-dom/-/dts-dom-3.3.0.tgz",
|
||||
"integrity": "sha512-k1ZsLGLxU8cd32cLL2DL5LmM5vvbaPMqnqnIqnvI5Wy22vr8M2LUuk3FFcEDKxSX+6h4G1TGQE7MDv2sRQk5Fg=="
|
||||
},
|
||||
"emojis-list": {
|
||||
"version": "2.1.0",
|
||||
"resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz",
|
||||
"integrity": "sha1-TapNnbAPmBmIDHn6RXrlsJof04k="
|
||||
},
|
||||
"entities": {
|
||||
"version": "1.1.2",
|
||||
"resolved": "https://registry.npmjs.org/entities/-/entities-1.1.2.tgz",
|
||||
"integrity": "sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w=="
|
||||
},
|
||||
"escape-string-regexp": {
|
||||
"version": "2.0.0",
|
||||
"resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz",
|
||||
"integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w=="
|
||||
},
|
||||
"eventemitter3": {
|
||||
"version": "3.1.2",
|
||||
"resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-3.1.2.tgz",
|
||||
"integrity": "sha512-tvtQIeLVHjDkJYnzf2dgVMxfuSGJeM/7UCG17TT4EumTfNtF+0nebF/4zWOIkCreAbtNqhGEboB6BWrwqNaw4Q=="
|
||||
},
|
||||
"exports-loader": {
|
||||
"version": "0.7.0",
|
||||
"resolved": "https://registry.npmjs.org/exports-loader/-/exports-loader-0.7.0.tgz",
|
||||
"integrity": "sha512-RKwCrO4A6IiKm0pG3c9V46JxIHcDplwwGJn6+JJ1RcVnh/WSGJa0xkmk5cRVtgOPzCAtTMGj2F7nluh9L0vpSA==",
|
||||
"requires": {
|
||||
"loader-utils": "^1.1.0",
|
||||
"source-map": "0.5.0"
|
||||
}
|
||||
},
|
||||
"graceful-fs": {
|
||||
"version": "4.1.15",
|
||||
"resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.15.tgz",
|
||||
"integrity": "sha512-6uHUhOPEBgQ24HM+r6b/QwWfZq+yiFcipKFrOFiBEnWdy5sdzYoi+pJeQaPI5qOLRFqWmAXUPQNsielzdLoecA=="
|
||||
},
|
||||
"imports-loader": {
|
||||
"version": "0.8.0",
|
||||
"resolved": "https://registry.npmjs.org/imports-loader/-/imports-loader-0.8.0.tgz",
|
||||
"integrity": "sha512-kXWL7Scp8KQ4552ZcdVTeaQCZSLW+e6nJfp3cwUMB673T7Hr98Xjx5JK+ql7ADlJUvj1JS5O01RLbKoutN5QDQ==",
|
||||
"requires": {
|
||||
"loader-utils": "^1.0.2",
|
||||
"source-map": "^0.6.1"
|
||||
},
|
||||
"dependencies": {
|
||||
"source-map": {
|
||||
"version": "0.6.1",
|
||||
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
|
||||
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
|
||||
}
|
||||
}
|
||||
},
|
||||
"inherits": {
|
||||
"version": "2.0.3",
|
||||
"resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz",
|
||||
"integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4="
|
||||
},
|
||||
"js2xmlparser": {
|
||||
"version": "4.0.0",
|
||||
"resolved": "https://registry.npmjs.org/js2xmlparser/-/js2xmlparser-4.0.0.tgz",
|
||||
"integrity": "sha512-WuNgdZOXVmBk5kUPMcTcVUpbGRzLfNkv7+7APq7WiDihpXVKrgxo6wwRpRl9OQeEBgKCVk9mR7RbzrnNWC8oBw==",
|
||||
"requires": {
|
||||
"xmlcreate": "^2.0.0"
|
||||
}
|
||||
},
|
||||
"jsdoc": {
|
||||
"version": "3.6.2",
|
||||
"resolved": "https://registry.npmjs.org/jsdoc/-/jsdoc-3.6.2.tgz",
|
||||
"integrity": "sha512-S2vzg99C5+gb7FWlrK4TVdyzVPGGkdvpDkCEJH1JABi2PKzPeLu5/zZffcJUifgWUJqXWl41Hoc+MmuM2GukIg==",
|
||||
"requires": {
|
||||
"@babel/parser": "^7.4.4",
|
||||
"bluebird": "^3.5.4",
|
||||
"catharsis": "^0.8.10",
|
||||
"escape-string-regexp": "^2.0.0",
|
||||
"js2xmlparser": "^4.0.0",
|
||||
"klaw": "^3.0.0",
|
||||
"markdown-it": "^8.4.2",
|
||||
"markdown-it-anchor": "^5.0.2",
|
||||
"marked": "^0.6.2",
|
||||
"mkdirp": "^0.5.1",
|
||||
"requizzle": "^0.2.2",
|
||||
"strip-json-comments": "^3.0.1",
|
||||
"taffydb": "2.6.2",
|
||||
"underscore": "~1.9.1"
|
||||
}
|
||||
},
|
||||
"json5": {
|
||||
"version": "1.0.1",
|
||||
"resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz",
|
||||
"integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==",
|
||||
"requires": {
|
||||
"minimist": "^1.2.0"
|
||||
}
|
||||
},
|
||||
"klaw": {
|
||||
"version": "3.0.0",
|
||||
"resolved": "https://registry.npmjs.org/klaw/-/klaw-3.0.0.tgz",
|
||||
"integrity": "sha512-0Fo5oir+O9jnXu5EefYbVK+mHMBeEVEy2cmctR1O1NECcCkPRreJKrS6Qt/j3KC2C148Dfo9i3pCmCMsdqGr0g==",
|
||||
"requires": {
|
||||
"graceful-fs": "^4.1.9"
|
||||
}
|
||||
},
|
||||
"linkify-it": {
|
||||
"version": "2.1.0",
|
||||
"resolved": "https://registry.npmjs.org/linkify-it/-/linkify-it-2.1.0.tgz",
|
||||
"integrity": "sha512-4REs8/062kV2DSHxNfq5183zrqXMl7WP0WzABH9IeJI+NLm429FgE1PDecltYfnOoFDFlZGh2T8PfZn0r+GTRg==",
|
||||
"requires": {
|
||||
"uc.micro": "^1.0.1"
|
||||
}
|
||||
},
|
||||
"loader-utils": {
|
||||
"version": "1.2.3",
|
||||
"resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.2.3.tgz",
|
||||
"integrity": "sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA==",
|
||||
"requires": {
|
||||
"big.js": "^5.2.2",
|
||||
"emojis-list": "^2.0.0",
|
||||
"json5": "^1.0.1"
|
||||
}
|
||||
},
|
||||
"lodash": {
|
||||
"version": "4.17.11",
|
||||
"resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.11.tgz",
|
||||
"integrity": "sha512-cQKh8igo5QUhZ7lg38DYWAxMvjSAKG0A8wGSVimP07SIUEK2UO+arSRKbRZWtelMtN5V0Hkwh5ryOto/SshYIg=="
|
||||
},
|
||||
"markdown-it": {
|
||||
"version": "8.4.2",
|
||||
"resolved": "https://registry.npmjs.org/markdown-it/-/markdown-it-8.4.2.tgz",
|
||||
"integrity": "sha512-GcRz3AWTqSUphY3vsUqQSFMbgR38a4Lh3GWlHRh/7MRwz8mcu9n2IO7HOh+bXHrR9kOPDl5RNCaEsrneb+xhHQ==",
|
||||
"requires": {
|
||||
"argparse": "^1.0.7",
|
||||
"entities": "~1.1.1",
|
||||
"linkify-it": "^2.0.0",
|
||||
"mdurl": "^1.0.1",
|
||||
"uc.micro": "^1.0.5"
|
||||
}
|
||||
},
|
||||
"markdown-it-anchor": {
|
||||
"version": "5.2.4",
|
||||
"resolved": "https://registry.npmjs.org/markdown-it-anchor/-/markdown-it-anchor-5.2.4.tgz",
|
||||
"integrity": "sha512-n8zCGjxA3T+Mx1pG8HEgbJbkB8JFUuRkeTZQuIM8iPY6oQ8sWOPRZJDFC9a/pNg2QkHEjjGkhBEl/RSyzaDZ3A=="
|
||||
},
|
||||
"marked": {
|
||||
"version": "0.6.2",
|
||||
"resolved": "https://registry.npmjs.org/marked/-/marked-0.6.2.tgz",
|
||||
"integrity": "sha512-LqxwVH3P/rqKX4EKGz7+c2G9r98WeM/SW34ybhgNGhUQNKtf1GmmSkJ6cDGJ/t6tiyae49qRkpyTw2B9HOrgUA=="
|
||||
},
|
||||
"mdurl": {
|
||||
"version": "1.0.1",
|
||||
"resolved": "https://registry.npmjs.org/mdurl/-/mdurl-1.0.1.tgz",
|
||||
"integrity": "sha1-/oWy7HWlkDfyrf7BAP1sYBdhFS4="
|
||||
},
|
||||
"minimist": {
|
||||
"version": "1.2.0",
|
||||
"resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz",
|
||||
"integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ="
|
||||
},
|
||||
"mkdirp": {
|
||||
"version": "0.5.1",
|
||||
"resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz",
|
||||
"integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=",
|
||||
"requires": {
|
||||
"minimist": "0.0.8"
|
||||
},
|
||||
"dependencies": {
|
||||
"minimist": {
|
||||
"version": "0.0.8",
|
||||
"resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz",
|
||||
"integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0="
|
||||
}
|
||||
}
|
||||
},
|
||||
"path": {
|
||||
"version": "0.12.7",
|
||||
"resolved": "https://registry.npmjs.org/path/-/path-0.12.7.tgz",
|
||||
"integrity": "sha1-1NwqUGxM4hl+tIHr/NWzbAFAsQ8=",
|
||||
"requires": {
|
||||
"process": "^0.11.1",
|
||||
"util": "^0.10.3"
|
||||
}
|
||||
},
|
||||
"phaser": {
|
||||
"version": "3.17.0",
|
||||
"resolved": "https://registry.npmjs.org/phaser/-/phaser-3.17.0.tgz",
|
||||
"integrity": "sha512-lnpOqchC4eHkt7zDljPjGUfGi2agDhrdXPR/DdXTHSkMWywvhF6/lFIkWlyfZm6S4kmmQp4sovUYn6nrOcNKPw==",
|
||||
"requires": {
|
||||
"dts-dom": "^3.2.0",
|
||||
"eventemitter3": "^3.1.0",
|
||||
"exports-loader": "^0.7.0",
|
||||
"imports-loader": "^0.8.0",
|
||||
"jsdoc": "^3.6.1",
|
||||
"path": "^0.12.7",
|
||||
"typescript": "^3.4.5"
|
||||
}
|
||||
},
|
||||
"process": {
|
||||
"version": "0.11.10",
|
||||
"resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz",
|
||||
"integrity": "sha1-czIwDoQBYb2j5podHZGn1LwW8YI="
|
||||
},
|
||||
"requizzle": {
|
||||
"version": "0.2.2",
|
||||
"resolved": "https://registry.npmjs.org/requizzle/-/requizzle-0.2.2.tgz",
|
||||
"integrity": "sha512-oJ6y7JcUJkblRGhMByGNcszeLgU0qDxNKFCiUZR1XyzHyVsev+Mxb1tyygxLd1ORsKee1SA5BInFdUwY64GE/A==",
|
||||
"requires": {
|
||||
"lodash": "^4.17.11"
|
||||
}
|
||||
},
|
||||
"source-map": {
|
||||
"version": "0.5.0",
|
||||
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.0.tgz",
|
||||
"integrity": "sha1-D+llA6yGpa213mP05BKuSHLNvoY="
|
||||
},
|
||||
"sprintf-js": {
|
||||
"version": "1.0.3",
|
||||
"resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz",
|
||||
"integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw="
|
||||
},
|
||||
"strip-json-comments": {
|
||||
"version": "3.0.1",
|
||||
"resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.0.1.tgz",
|
||||
"integrity": "sha512-VTyMAUfdm047mwKl+u79WIdrZxtFtn+nBxHeb844XBQ9uMNTuTHdx2hc5RiAJYqwTj3wc/xe5HLSdJSkJ+WfZw=="
|
||||
},
|
||||
"taffydb": {
|
||||
"version": "2.6.2",
|
||||
"resolved": "https://registry.npmjs.org/taffydb/-/taffydb-2.6.2.tgz",
|
||||
"integrity": "sha1-fLy2S1oUG2ou/CxdLGe04VCyomg="
|
||||
},
|
||||
"typescript": {
|
||||
"version": "3.5.1",
|
||||
"resolved": "https://registry.npmjs.org/typescript/-/typescript-3.5.1.tgz",
|
||||
"integrity": "sha512-64HkdiRv1yYZsSe4xC1WVgamNigVYjlssIoaH2HcZF0+ijsk5YK2g0G34w9wJkze8+5ow4STd22AynfO6ZYYLw=="
|
||||
},
|
||||
"uc.micro": {
|
||||
"version": "1.0.6",
|
||||
"resolved": "https://registry.npmjs.org/uc.micro/-/uc.micro-1.0.6.tgz",
|
||||
"integrity": "sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA=="
|
||||
},
|
||||
"underscore": {
|
||||
"version": "1.9.1",
|
||||
"resolved": "https://registry.npmjs.org/underscore/-/underscore-1.9.1.tgz",
|
||||
"integrity": "sha512-5/4etnCkd9c8gwgowi5/om/mYO5ajCaOgdzj/oW+0eQV9WxKBDZw5+ycmKmeaTXjInS/W0BzpGLo2xR2aBwZdg=="
|
||||
},
|
||||
"util": {
|
||||
"version": "0.10.4",
|
||||
"resolved": "https://registry.npmjs.org/util/-/util-0.10.4.tgz",
|
||||
"integrity": "sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==",
|
||||
"requires": {
|
||||
"inherits": "2.0.3"
|
||||
}
|
||||
},
|
||||
"xmlcreate": {
|
||||
"version": "2.0.1",
|
||||
"resolved": "https://registry.npmjs.org/xmlcreate/-/xmlcreate-2.0.1.tgz",
|
||||
"integrity": "sha512-MjGsXhKG8YjTKrDCXseFo3ClbMGvUD4en29H2Cev1dv4P/chlpw6KdYmlCWDkhosBVKRDjM836+3e3pm1cBNJA=="
|
||||
}
|
||||
}
|
||||
}
|
14
package.json
14
package.json
|
@ -1,14 +0,0 @@
|
|||
{
|
||||
"name": "maman",
|
||||
"version": "1.0.0",
|
||||
"description": "Bon anniversaire",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"author": "Adrien Luxey",
|
||||
"license": "ISC",
|
||||
"dependencies": {
|
||||
"phaser": "^3.17.0"
|
||||
}
|
||||
}
|
|
@ -201,11 +201,11 @@
|
|||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="7.9195959"
|
||||
inkscape:cx="120.40297"
|
||||
inkscape:cy="536.93015"
|
||||
inkscape:zoom="2.8"
|
||||
inkscape:cx="-210.48126"
|
||||
inkscape:cy="806.27044"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="g1861"
|
||||
inkscape:current-layer="layer8"
|
||||
showgrid="false"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1053"
|
||||
|
@ -587,15 +587,15 @@ AQDoMAAAdBgAgA4DAECHAQDoMAAAdBgAwP86/n/IqZosPx5kGgAAAABJRU5ErkJggg==
|
|||
d="m 68.900391,31.808594 c -1.740102,1.038089 -6.130032,-1.441559 -7.642579,1.011718 -3.241835,-2.333796 -3.007802,1.642983 -5.633965,-0.960698 -3.580375,-1.140922 -3.590573,6.706011 -0.659749,6.382548 3.38627,0.470384 4.309667,-1.032016 6.914808,0.05667 1.658604,-6.323782 -1.392529,-0.868471 2.419442,-0.055 2.487789,-4.293492 -0.29203,-3.257589 2.653215,-0.05437 3.085515,1.372648 4.689812,-2.858741 5.099081,-1.480082 1.091592,4.376328 4.24321,-1.146105 4.227486,-3.424006 -0.195044,-2.687702 -5.447517,-0.629349 -7.377739,-1.476771 z m -11.703125,2.595703 c -0.763602,4.571307 -2.04395,-1.753917 0,0 z"
|
||||
id="text1671"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:export-filename="/home/adrien/src/maman/assets/texts/cathy-32.png"
|
||||
inkscape:export-xdpi="107.35197"
|
||||
inkscape:export-ydpi="107.35197" />
|
||||
inkscape:export-filename="/home/adrien/src/maman/assets/platforms/cathy-48.png"
|
||||
inkscape:export-xdpi="161.02795"
|
||||
inkscape:export-ydpi="161.02795" />
|
||||
<path
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46666622px;line-height:125%;font-family:Troika;-inkscape-font-specification:'Troika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;display:inline;opacity:1;fill:#020b2e;fill-opacity:1;stroke:#020b2e;stroke-width:0.80000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
d="m 58.667969,47.541016 c -3.600255,-0.353153 -5.412617,1.862044 -4.340755,5.893687 2.656014,3.20055 6.769222,-1.409967 2.762443,-2.366422 3.459229,-3.619811 1.74617,3.221695 4.663043,3.233821 2.594762,-0.222464 7.703896,1.315833 6.708238,-3.276711 -0.402019,-2.932461 0.151763,6.431548 3.230468,2.597656 -0.989378,-2.726951 3.62977,-6.383092 -1.920922,-5.760569 C 66.534169,48.033902 63.859218,47.832685 60.574219,48 60.212848,47.31252 59.397411,47.550813 58.667969,47.541016 Z m 5.197265,2.849609 c -0.187844,-0.03228 0.151433,-0.26126 0,0 z M 64.140625,51.25 c 1.356597,1.175622 -1.413823,-0.102478 0,0 z"
|
||||
id="text1675"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:export-filename="/home/adrien/src/maman/assets/texts/cest-32.png"
|
||||
inkscape:export-filename="/home/adrien/src/maman/assets/platforms/cest-32.png"
|
||||
inkscape:export-xdpi="103.55028"
|
||||
inkscape:export-ydpi="103.55028" />
|
||||
<path
|
||||
|
@ -603,33 +603,33 @@ AQDoMAAAdBgAgA4DAECHAQDoMAAAdBgAwP86/n/IqZosPx5kGgAAAABJRU5ErkJggg==
|
|||
d="m 55.203125,63.59375 c -1.238767,2.424205 -1.547661,7.99307 2.93665,6.444455 2.263136,-1.431052 4.143944,1.259853 5.43359,-1.272348 0.846951,-2.717767 -2.829071,-7.773113 -4.648049,-3.758479 -3.01755,7.726959 0.850219,-3.97127 -3.722191,-1.413628 z"
|
||||
id="text1679"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:export-filename="/home/adrien/src/maman/assets/texts/la-32.png"
|
||||
inkscape:export-xdpi="103.55028"
|
||||
inkscape:export-ydpi="103.55028" />
|
||||
inkscape:export-filename="/home/adrien/src/maman/assets/platforms/la-48.png"
|
||||
inkscape:export-xdpi="154.63538"
|
||||
inkscape:export-ydpi="154.63538" />
|
||||
<path
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46666622px;line-height:125%;font-family:Troika;-inkscape-font-specification:'Troika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;display:inline;opacity:1;fill:#020b2e;fill-opacity:1;stroke:#020b2e;stroke-width:0.80000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
d="m 84.189453,79.458984 c -2.299764,0.200743 -4.653715,0.118747 -7.414862,-0.08251 -3.504969,0.868134 -1.854248,6.484001 -3.176116,0.153105 -3.666269,-1.604543 -2.74378,7.734345 -3.282611,0.561777 -2.460031,-1.482508 -5.377842,-0.216708 -8.54438,-0.692915 -2.759985,0.198924 -3.481746,0.78134 -6.144531,0.130859 -1.781781,1.91025 -0.349876,9.241457 2.168236,5.122671 0.498709,0.398771 3.968716,1.804152 6.964577,1.170298 2.734625,-0.230329 6.008428,0.01097 9.246977,0.01412 3.016883,-0.256063 6.0619,0.184394 9.299898,-0.266077 2.313409,0.336393 4.616474,-0.110047 7.450338,0.240263 4.106437,0.506837 0.388905,-3.451419 2.018456,-5.109589 -0.968075,-2.806241 -4.910439,-0.376479 -7.244765,-1.322475 -0.447072,0.02683 -0.894145,0.05365 -1.341217,0.08047 z m -19.355469,3.828125 c -0.151027,-1.551816 0.02537,-2.025819 0,0 z m 13.894532,-1.324218 c -0.405052,-0.06253 0.290995,-0.54666 0,0 z m -0.0059,1.289062 c -0.09576,0.02767 0.09008,-1.027842 0,0 z"
|
||||
id="text1683"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:export-filename="/home/adrien/src/maman/assets/texts/meilleure.png"
|
||||
inkscape:export-xdpi="108.49863"
|
||||
inkscape:export-ydpi="108.49863" />
|
||||
inkscape:export-filename="/home/adrien/src/maman/assets/platforms/meilleure-48.png"
|
||||
inkscape:export-xdpi="162.74796"
|
||||
inkscape:export-ydpi="162.74796" />
|
||||
<path
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46666622px;line-height:125%;font-family:Troika;-inkscape-font-specification:'Troika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;display:inline;opacity:1;fill:#020b2e;fill-opacity:1;stroke:#020b2e;stroke-width:0.80000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
d="m 55.185547,95.322266 c -1.273661,2.461974 -1.199647,7.938714 3.169922,6.347654 1.733433,-1.04517 5.606513,0.87283 8.740474,-0.10779 1.184398,-1.613285 1.354381,-5.56585 -0.455358,-6.320909 -2.589654,0.273585 -5.670172,-0.143344 -7.561121,0.507735 -0.929556,-1.063683 -2.671649,-0.236742 -3.893917,-0.42669 z m 8.214844,2.472656 c -0.195653,-0.03455 0.160561,-0.268497 0,0 z m 0.27539,0.857422 c 1.355835,1.180758 -1.417252,-0.110541 0,0 z"
|
||||
id="text1687"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:export-filename="/home/adrien/src/maman/assets/texts/des-32.png"
|
||||
inkscape:export-xdpi="108.49863"
|
||||
inkscape:export-ydpi="108.49863" />
|
||||
inkscape:export-filename="/home/adrien/src/maman/assets/platforms/des-48.png"
|
||||
inkscape:export-xdpi="161.30629"
|
||||
inkscape:export-ydpi="161.30629" />
|
||||
<path
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46666622px;line-height:125%;font-family:Troika;-inkscape-font-specification:'Troika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;display:inline;opacity:1;fill:#020b2e;fill-opacity:1;stroke:#020b2e;stroke-width:0.80000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
d="m 83.164062,111.15039 c -2.559178,0.65967 -4.852039,-0.64369 -7.1875,0.71289 0.71488,0.064 -4.727789,-1.16155 -4.325451,0.73246 -1.408984,-2.44247 -3.610075,-0.68466 -5.925454,-0.85086 0.69559,0.84493 -4.783587,-1.51196 -4.576499,0.85086 -1.412257,-2.442 -3.606236,-0.68301 -5.923501,-0.85086 -1.550027,2.52774 1.019447,8.99561 2.573171,4.15356 0.547348,1.55162 4.278987,2.77182 5.619141,0.76758 1.580077,3.51674 6.059433,-2.03904 5.612568,0.38067 2.390186,1.78546 4.618973,-1.03441 6.147019,0.5932 2.616693,-0.49905 4.682274,-0.4108 7.220539,0.0182 4.518535,0.87228 2.742316,-3.64172 3.153161,-5.74873 -0.140214,-1.22155 -1.584096,-0.69329 -2.387194,-0.75901 z m -1.248046,3.68945 c -0.629789,0.41214 -0.710893,-0.7434 0,0 z"
|
||||
id="text1691"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:export-filename="/home/adrien/src/maman/assets/texts/mamans-64.png"
|
||||
inkscape:export-xdpi="214.50262"
|
||||
inkscape:export-ydpi="214.50262" />
|
||||
inkscape:export-filename="/home/adrien/src/maman/assets/platforms/mamans-48.png"
|
||||
inkscape:export-xdpi="160.87697"
|
||||
inkscape:export-ydpi="160.87697" />
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
|
@ -642,9 +642,9 @@ AQDoMAAAdBgAgA4DAECHAQDoMAAAdBgAwP86/n/IqZosPx5kGgAAAABJRU5ErkJggg==
|
|||
x="53.294643"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46666622px;line-height:125%;font-family:Troika;-inkscape-font-specification:'Troika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;display:inline;opacity:1;fill:#ffea39;fill-opacity:1;stroke:#b50093;stroke-width:0.80000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;"
|
||||
xml:space="preserve"
|
||||
inkscape:export-filename="/home/adrien/src/maman/assets/texts/cathy-32.png"
|
||||
inkscape:export-xdpi="107.35197"
|
||||
inkscape:export-ydpi="107.35197"><tspan
|
||||
inkscape:export-filename="/home/adrien/src/maman/assets/platforms/cathy-48.png"
|
||||
inkscape:export-xdpi="161.02795"
|
||||
inkscape:export-ydpi="161.02795"><tspan
|
||||
style="font-size:8.46666622px;fill:#ffea39;fill-opacity:1;stroke:#b50093;stroke-width:0.80000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;"
|
||||
y="37.708332"
|
||||
x="53.294643"
|
||||
|
@ -656,7 +656,7 @@ AQDoMAAAdBgAgA4DAECHAQDoMAAAdBgAwP86/n/IqZosPx5kGgAAAABJRU5ErkJggg==
|
|||
x="54.428574"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46666622px;line-height:125%;font-family:Troika;-inkscape-font-specification:'Troika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;display:inline;opacity:1;fill:#ffea39;fill-opacity:1;stroke:#b50093;stroke-width:0.80000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;"
|
||||
xml:space="preserve"
|
||||
inkscape:export-filename="/home/adrien/src/maman/assets/texts/cest-32.png"
|
||||
inkscape:export-filename="/home/adrien/src/maman/assets/platforms/cest-32.png"
|
||||
inkscape:export-xdpi="103.55028"
|
||||
inkscape:export-ydpi="103.55028"><tspan
|
||||
style="font-size:8.46666622px;fill:#ffea39;fill-opacity:1;stroke:#b50093;stroke-width:0.80000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;"
|
||||
|
@ -670,9 +670,9 @@ AQDoMAAAdBgAgA4DAECHAQDoMAAAdBgAwP86/n/IqZosPx5kGgAAAABJRU5ErkJggg==
|
|||
x="54.806545"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46666622px;line-height:125%;font-family:Troika;-inkscape-font-specification:'Troika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;display:inline;opacity:1;fill:#ffea39;fill-opacity:1;stroke:#b50093;stroke-width:0.80000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;"
|
||||
xml:space="preserve"
|
||||
inkscape:export-filename="/home/adrien/src/maman/assets/texts/la-32.png"
|
||||
inkscape:export-xdpi="103.55028"
|
||||
inkscape:export-ydpi="103.55028"><tspan
|
||||
inkscape:export-filename="/home/adrien/src/maman/assets/platforms/la-48.png"
|
||||
inkscape:export-xdpi="154.63538"
|
||||
inkscape:export-ydpi="154.63538"><tspan
|
||||
style="font-size:8.46666622px;fill:#ffea39;fill-opacity:1;stroke:#b50093;stroke-width:0.80000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;"
|
||||
y="69.425842"
|
||||
x="54.806545"
|
||||
|
@ -684,9 +684,9 @@ AQDoMAAAdBgAgA4DAECHAQDoMAAAdBgAwP86/n/IqZosPx5kGgAAAABJRU5ErkJggg==
|
|||
x="55.184521"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46666622px;line-height:125%;font-family:Troika;-inkscape-font-specification:'Troika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;display:inline;opacity:1;fill:#ffea39;fill-opacity:1;stroke:#b50093;stroke-width:0.80000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;"
|
||||
xml:space="preserve"
|
||||
inkscape:export-filename="/home/adrien/src/maman/assets/texts/meilleure.png"
|
||||
inkscape:export-xdpi="108.49863"
|
||||
inkscape:export-ydpi="108.49863"><tspan
|
||||
inkscape:export-filename="/home/adrien/src/maman/assets/platforms/meilleure-48.png"
|
||||
inkscape:export-xdpi="162.74796"
|
||||
inkscape:export-ydpi="162.74796"><tspan
|
||||
style="font-size:8.46666622px;fill:#ffea39;fill-opacity:1;stroke:#b50093;stroke-width:0.80000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;"
|
||||
y="85.23941"
|
||||
x="55.184521"
|
||||
|
@ -698,9 +698,9 @@ AQDoMAAAdBgAgA4DAECHAQDoMAAAdBgAwP86/n/IqZosPx5kGgAAAABJRU5ErkJggg==
|
|||
x="54.806545"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46666622px;line-height:125%;font-family:Troika;-inkscape-font-specification:'Troika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;display:inline;opacity:1;fill:#ffea39;fill-opacity:1;stroke:#b50093;stroke-width:0.80000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;"
|
||||
xml:space="preserve"
|
||||
inkscape:export-filename="/home/adrien/src/maman/assets/texts/des-32.png"
|
||||
inkscape:export-xdpi="108.49863"
|
||||
inkscape:export-ydpi="108.49863"><tspan
|
||||
inkscape:export-filename="/home/adrien/src/maman/assets/platforms/des-48.png"
|
||||
inkscape:export-xdpi="161.30629"
|
||||
inkscape:export-ydpi="161.30629"><tspan
|
||||
style="font-size:8.46666622px;fill:#ffea39;fill-opacity:1;stroke:#b50093;stroke-width:0.80000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;"
|
||||
y="101.13769"
|
||||
x="54.806545"
|
||||
|
@ -712,9 +712,9 @@ AQDoMAAAdBgAgA4DAECHAQDoMAAAdBgAwP86/n/IqZosPx5kGgAAAABJRU5ErkJggg==
|
|||
x="55.184521"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46666622px;line-height:125%;font-family:Troika;-inkscape-font-specification:'Troika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;display:inline;opacity:1;fill:#ffea39;fill-opacity:1;stroke:#b50093;stroke-width:0.80000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;"
|
||||
xml:space="preserve"
|
||||
inkscape:export-filename="/home/adrien/src/maman/assets/texts/mamans-64.png"
|
||||
inkscape:export-xdpi="214.50262"
|
||||
inkscape:export-ydpi="214.50262"><tspan
|
||||
inkscape:export-filename="/home/adrien/src/maman/assets/platforms/mamans-48.png"
|
||||
inkscape:export-xdpi="160.87697"
|
||||
inkscape:export-ydpi="160.87697"><tspan
|
||||
style="font-size:8.46666622px;fill:#ffea39;fill-opacity:1;stroke:#b50093;stroke-width:0.80000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;"
|
||||
y="117.00772"
|
||||
x="55.184521"
|
||||
|
@ -731,240 +731,349 @@ AQDoMAAAdBgAgA4DAECHAQDoMAAAdBgAwP86/n/IqZosPx5kGgAAAABJRU5ErkJggg==
|
|||
id="text1855"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:export-xdpi="222.10544"
|
||||
inkscape:export-ydpi="222.10544" />
|
||||
inkscape:export-ydpi="222.10544"
|
||||
inkscape:export-filename="/home/adrien/src/maman/assets/le-sol-cailloux-64.png" />
|
||||
</g>
|
||||
<g
|
||||
inkscape:label="Sol"
|
||||
id="g1861"
|
||||
inkscape:groupmode="layer">
|
||||
inkscape:groupmode="layer"
|
||||
style="display:none">
|
||||
<text
|
||||
id="text1859"
|
||||
y="153.74702"
|
||||
x="23.8125"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46666622px;line-height:125%;font-family:Troika;-inkscape-font-specification:'Troika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#443d00;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46666622px;line-height:125%;font-family:Troika;-inkscape-font-specification:'Troika, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#443d00;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
xml:space="preserve"
|
||||
inkscape:export-xdpi="222.10544"
|
||||
inkscape:export-ydpi="222.10544"><tspan
|
||||
style="stroke-width:0.26458332px;fill:#443d00;fill-opacity:1;"
|
||||
inkscape:export-ydpi="222.10544"
|
||||
inkscape:export-filename="/home/adrien/src/maman/assets/le-sol-cailloux-64.png"><tspan
|
||||
style="fill:#443d00;fill-opacity:1;stroke-width:0.26458332px"
|
||||
y="153.74702"
|
||||
x="23.8125"
|
||||
id="tspan1857"
|
||||
sodipodi:role="line">Le SOL</tspan></text>
|
||||
<circle
|
||||
style="opacity:1;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.80000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="path1890-4-7"
|
||||
cx="36.674706"
|
||||
cy="148.84599"
|
||||
r="0.23803692" />
|
||||
<circle
|
||||
style="opacity:1;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.60350877;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="path1890-4-5"
|
||||
cx="35.924404"
|
||||
cy="149.35974"
|
||||
r="0.1795717" />
|
||||
<circle
|
||||
style="opacity:1;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.60350877;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="path1890-4-5-4"
|
||||
cx="34.168739"
|
||||
cy="150.49454"
|
||||
r="0.1795717" />
|
||||
<circle
|
||||
style="opacity:1;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.60350877;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="path1890-4-5-46"
|
||||
cx="35.613667"
|
||||
cy="153.26746"
|
||||
r="0.1795717" />
|
||||
<circle
|
||||
style="opacity:1;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.60350877;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="path1890-4-5-5"
|
||||
cx="28.300968"
|
||||
cy="152.14062"
|
||||
r="0.1795717" />
|
||||
<circle
|
||||
style="opacity:1;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.80000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="path1890-4-7-5"
|
||||
cx="30.285343"
|
||||
cy="151.3138"
|
||||
r="0.23803692" />
|
||||
<circle
|
||||
style="opacity:1;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.80000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="path1890-4-7-1"
|
||||
cx="24.645054"
|
||||
cy="152.06311"
|
||||
r="0.23803692" />
|
||||
<circle
|
||||
style="opacity:1;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.60350877;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="path1890-4-5-5-4"
|
||||
cx="25.584263"
|
||||
cy="148.71521"
|
||||
r="0.1795717" />
|
||||
<circle
|
||||
style="opacity:1;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.60350877;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="path1890-4-5-46-7"
|
||||
cx="43.868862"
|
||||
cy="152.47136"
|
||||
r="0.1795717" />
|
||||
<circle
|
||||
style="opacity:1;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.60350877;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="path1890-4-5-46-06"
|
||||
cx="38.4827"
|
||||
cy="150.79408"
|
||||
r="0.1795717" />
|
||||
<circle
|
||||
style="opacity:1;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.60350877;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="path1890-4-5-46-1"
|
||||
cx="39.404018"
|
||||
cy="149.47116"
|
||||
r="0.1795717" />
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer8"
|
||||
inkscape:label="Cailloux">
|
||||
inkscape:label="Cailloux"
|
||||
style="display:none">
|
||||
<circle
|
||||
style="opacity:1;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.80000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="path1872"
|
||||
cx="24.577826"
|
||||
cy="153.18172"
|
||||
r="0.19209997" />
|
||||
r="0.19209997"
|
||||
inkscape:export-filename="/home/adrien/src/maman/assets/le-sol-cailloux-64.png"
|
||||
inkscape:export-xdpi="222"
|
||||
inkscape:export-ydpi="222" />
|
||||
<circle
|
||||
style="opacity:1;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.80000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="path1874"
|
||||
cx="34.857792"
|
||||
cy="149.26259"
|
||||
r="0.39672822" />
|
||||
r="0.39672822"
|
||||
inkscape:export-filename="/home/adrien/src/maman/assets/le-sol-cailloux-64.png"
|
||||
inkscape:export-xdpi="222"
|
||||
inkscape:export-ydpi="222" />
|
||||
<circle
|
||||
style="opacity:1;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.80000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="path1876"
|
||||
cx="43.851524"
|
||||
cy="149.12671"
|
||||
r="0.45936951" />
|
||||
r="0.45936951"
|
||||
inkscape:export-filename="/home/adrien/src/maman/assets/le-sol-cailloux-64.png"
|
||||
inkscape:export-xdpi="222"
|
||||
inkscape:export-ydpi="222" />
|
||||
<circle
|
||||
style="opacity:1;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.80000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="path1878"
|
||||
cx="43.240055"
|
||||
cy="153.23274"
|
||||
r="0.25474125" />
|
||||
r="0.25474125"
|
||||
inkscape:export-filename="/home/adrien/src/maman/assets/le-sol-cailloux-64.png"
|
||||
inkscape:export-xdpi="222"
|
||||
inkscape:export-ydpi="222" />
|
||||
<circle
|
||||
style="opacity:1;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.80000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="path1880"
|
||||
cx="38.619278"
|
||||
cy="152.86465"
|
||||
r="0.51365864" />
|
||||
r="0.51365864"
|
||||
inkscape:export-filename="/home/adrien/src/maman/assets/le-sol-cailloux-64.png"
|
||||
inkscape:export-xdpi="222"
|
||||
inkscape:export-ydpi="222" />
|
||||
<circle
|
||||
style="opacity:1;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.80000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="path1882"
|
||||
cx="36.377888"
|
||||
cy="152.23596"
|
||||
r="0.50530642" />
|
||||
r="0.50530642"
|
||||
inkscape:export-filename="/home/adrien/src/maman/assets/le-sol-cailloux-64.png"
|
||||
inkscape:export-xdpi="222"
|
||||
inkscape:export-ydpi="222" />
|
||||
<circle
|
||||
style="opacity:1;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.80000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="path1884"
|
||||
cx="28.764883"
|
||||
cy="151.18776"
|
||||
r="0.3674956" />
|
||||
r="0.3674956"
|
||||
inkscape:export-filename="/home/adrien/src/maman/assets/le-sol-cailloux-64.png"
|
||||
inkscape:export-xdpi="222"
|
||||
inkscape:export-ydpi="222" />
|
||||
<circle
|
||||
style="opacity:1;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.80000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="path1886"
|
||||
cx="29.808901"
|
||||
cy="149.2083"
|
||||
r="0.34243909" />
|
||||
r="0.34243909"
|
||||
inkscape:export-filename="/home/adrien/src/maman/assets/le-sol-cailloux-64.png"
|
||||
inkscape:export-xdpi="222"
|
||||
inkscape:export-ydpi="222" />
|
||||
<circle
|
||||
style="opacity:1;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.80000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="path1888"
|
||||
cx="26.258596"
|
||||
cy="152.98204"
|
||||
r="0.56794775" />
|
||||
r="0.56794775"
|
||||
inkscape:export-filename="/home/adrien/src/maman/assets/le-sol-cailloux-64.png"
|
||||
inkscape:export-xdpi="222"
|
||||
inkscape:export-ydpi="222" />
|
||||
<circle
|
||||
style="opacity:1;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.80000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="path1890"
|
||||
cx="28.952806"
|
||||
cy="153.07118"
|
||||
r="0.23803692" />
|
||||
r="0.23803692"
|
||||
inkscape:export-filename="/home/adrien/src/maman/assets/le-sol-cailloux-64.png"
|
||||
inkscape:export-xdpi="222"
|
||||
inkscape:export-ydpi="222" />
|
||||
<circle
|
||||
style="opacity:1;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.80000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="path1892"
|
||||
cx="30.422789"
|
||||
cy="153.09624"
|
||||
r="0.39672822" />
|
||||
r="0.39672822"
|
||||
inkscape:export-filename="/home/adrien/src/maman/assets/le-sol-cailloux-64.png"
|
||||
inkscape:export-xdpi="222"
|
||||
inkscape:export-ydpi="222" />
|
||||
<circle
|
||||
style="opacity:1;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.80000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="path1872-8"
|
||||
cx="28.572783"
|
||||
cy="149.45886"
|
||||
r="0.19209997" />
|
||||
r="0.19209997"
|
||||
inkscape:export-filename="/home/adrien/src/maman/assets/le-sol-cailloux-64.png"
|
||||
inkscape:export-xdpi="222"
|
||||
inkscape:export-ydpi="222" />
|
||||
<circle
|
||||
style="opacity:1;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.80000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="path1888-9"
|
||||
cx="40.845051"
|
||||
cy="149.25854"
|
||||
r="0.56794775" />
|
||||
r="0.56794775"
|
||||
inkscape:export-filename="/home/adrien/src/maman/assets/le-sol-cailloux-64.png"
|
||||
inkscape:export-xdpi="222"
|
||||
inkscape:export-ydpi="222" />
|
||||
<circle
|
||||
style="opacity:1;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.80000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="path1876-6"
|
||||
cx="34.573009"
|
||||
cy="153.05014"
|
||||
r="0.45936951" />
|
||||
r="0.45936951"
|
||||
inkscape:export-filename="/home/adrien/src/maman/assets/le-sol-cailloux-64.png"
|
||||
inkscape:export-xdpi="222"
|
||||
inkscape:export-ydpi="222" />
|
||||
<circle
|
||||
style="opacity:1;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.80000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="path1876-4"
|
||||
cx="43.277668"
|
||||
cy="151.43774"
|
||||
r="0.45936951" />
|
||||
r="0.45936951"
|
||||
inkscape:export-filename="/home/adrien/src/maman/assets/le-sol-cailloux-64.png"
|
||||
inkscape:export-xdpi="222"
|
||||
inkscape:export-ydpi="222" />
|
||||
<circle
|
||||
style="opacity:1;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.80000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="path1892-6"
|
||||
cx="25.298407"
|
||||
cy="150.9453"
|
||||
r="0.39672822" />
|
||||
r="0.39672822"
|
||||
inkscape:export-filename="/home/adrien/src/maman/assets/le-sol-cailloux-64.png"
|
||||
inkscape:export-xdpi="222"
|
||||
inkscape:export-ydpi="222" />
|
||||
<circle
|
||||
style="opacity:1;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.80000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="path1890-4"
|
||||
cx="38.400021"
|
||||
cy="149.01051"
|
||||
r="0.23803692" />
|
||||
r="0.23803692"
|
||||
inkscape:export-filename="/home/adrien/src/maman/assets/le-sol-cailloux-64.png"
|
||||
inkscape:export-xdpi="222"
|
||||
inkscape:export-ydpi="222" />
|
||||
<circle
|
||||
style="opacity:1;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.80000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="path1890-5"
|
||||
cx="39.92374"
|
||||
cy="153.16824"
|
||||
r="0.23803692" />
|
||||
r="0.23803692"
|
||||
inkscape:export-filename="/home/adrien/src/maman/assets/le-sol-cailloux-64.png"
|
||||
inkscape:export-xdpi="222"
|
||||
inkscape:export-ydpi="222" />
|
||||
<circle
|
||||
style="opacity:1;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.80000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="path1890-42"
|
||||
cx="41.341145"
|
||||
cy="151.26656"
|
||||
r="0.23803692" />
|
||||
r="0.23803692"
|
||||
inkscape:export-filename="/home/adrien/src/maman/assets/le-sol-cailloux-64.png"
|
||||
inkscape:export-xdpi="222"
|
||||
inkscape:export-ydpi="222" />
|
||||
<circle
|
||||
style="opacity:1;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.56707072;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="path1888-9-0"
|
||||
cx="41.282089"
|
||||
cy="152.82571"
|
||||
r="0.40258315" />
|
||||
r="0.40258315"
|
||||
inkscape:export-filename="/home/adrien/src/maman/assets/le-sol-cailloux-64.png"
|
||||
inkscape:export-xdpi="222"
|
||||
inkscape:export-ydpi="222" />
|
||||
<circle
|
||||
style="opacity:1;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.56707072;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="path1888-9-0-9"
|
||||
cx="35.269905"
|
||||
cy="150.88858"
|
||||
r="0.40258315" />
|
||||
r="0.40258315"
|
||||
inkscape:export-filename="/home/adrien/src/maman/assets/le-sol-cailloux-64.png"
|
||||
inkscape:export-xdpi="222"
|
||||
inkscape:export-ydpi="222" />
|
||||
<circle
|
||||
style="opacity:1;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.80000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="path1888-9-2"
|
||||
cx="24.961454"
|
||||
cy="149.53246"
|
||||
r="0.56794775" />
|
||||
r="0.56794775"
|
||||
inkscape:export-filename="/home/adrien/src/maman/assets/le-sol-cailloux-64.png"
|
||||
inkscape:export-xdpi="222"
|
||||
inkscape:export-ydpi="222" />
|
||||
<circle
|
||||
style="opacity:1;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.80000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="path1882-1"
|
||||
cx="45.135143"
|
||||
cy="153.04195"
|
||||
r="0.50530642" />
|
||||
r="0.50530642"
|
||||
inkscape:export-filename="/home/adrien/src/maman/assets/le-sol-cailloux-64.png"
|
||||
inkscape:export-xdpi="222"
|
||||
inkscape:export-ydpi="222" />
|
||||
<circle
|
||||
style="opacity:1;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.60350877;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="path1890-4-5-46-0"
|
||||
cx="43.632626"
|
||||
cy="150.34523"
|
||||
r="0.1795717" />
|
||||
r="0.1795717"
|
||||
inkscape:export-filename="/home/adrien/src/maman/assets/le-sol-cailloux-64.png"
|
||||
inkscape:export-xdpi="222"
|
||||
inkscape:export-ydpi="222" />
|
||||
<circle
|
||||
style="display:inline;opacity:1;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.80000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="path1890-4-7"
|
||||
cx="36.674706"
|
||||
cy="148.84599"
|
||||
r="0.23803692"
|
||||
inkscape:export-filename="/home/adrien/src/maman/assets/le-sol-cailloux-64.png"
|
||||
inkscape:export-xdpi="222"
|
||||
inkscape:export-ydpi="222" />
|
||||
<circle
|
||||
style="display:inline;opacity:1;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.60350877;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="path1890-4-5"
|
||||
cx="35.924404"
|
||||
cy="149.35974"
|
||||
r="0.1795717"
|
||||
inkscape:export-filename="/home/adrien/src/maman/assets/le-sol-cailloux-64.png"
|
||||
inkscape:export-xdpi="222"
|
||||
inkscape:export-ydpi="222" />
|
||||
<circle
|
||||
style="display:inline;opacity:1;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.60350877;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="path1890-4-5-4"
|
||||
cx="34.168739"
|
||||
cy="150.49454"
|
||||
r="0.1795717"
|
||||
inkscape:export-filename="/home/adrien/src/maman/assets/le-sol-cailloux-64.png"
|
||||
inkscape:export-xdpi="222"
|
||||
inkscape:export-ydpi="222" />
|
||||
<circle
|
||||
style="display:inline;opacity:1;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.60350877;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="path1890-4-5-46"
|
||||
cx="35.613667"
|
||||
cy="153.26746"
|
||||
r="0.1795717"
|
||||
inkscape:export-filename="/home/adrien/src/maman/assets/le-sol-cailloux-64.png"
|
||||
inkscape:export-xdpi="222"
|
||||
inkscape:export-ydpi="222" />
|
||||
<circle
|
||||
style="display:inline;opacity:1;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.60350877;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="path1890-4-5-5"
|
||||
cx="28.300968"
|
||||
cy="152.14062"
|
||||
r="0.1795717"
|
||||
inkscape:export-filename="/home/adrien/src/maman/assets/le-sol-cailloux-64.png"
|
||||
inkscape:export-xdpi="222"
|
||||
inkscape:export-ydpi="222" />
|
||||
<circle
|
||||
style="display:inline;opacity:1;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.80000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="path1890-4-7-5"
|
||||
cx="30.285343"
|
||||
cy="151.3138"
|
||||
r="0.23803692"
|
||||
inkscape:export-filename="/home/adrien/src/maman/assets/le-sol-cailloux-64.png"
|
||||
inkscape:export-xdpi="222"
|
||||
inkscape:export-ydpi="222" />
|
||||
<circle
|
||||
style="display:inline;opacity:1;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.80000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="path1890-4-7-1"
|
||||
cx="24.645054"
|
||||
cy="152.06311"
|
||||
r="0.23803692"
|
||||
inkscape:export-filename="/home/adrien/src/maman/assets/le-sol-cailloux-64.png"
|
||||
inkscape:export-xdpi="222"
|
||||
inkscape:export-ydpi="222" />
|
||||
<circle
|
||||
style="display:inline;opacity:1;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.60350877;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="path1890-4-5-5-4"
|
||||
cx="25.584263"
|
||||
cy="148.71521"
|
||||
r="0.1795717"
|
||||
inkscape:export-filename="/home/adrien/src/maman/assets/le-sol-cailloux-64.png"
|
||||
inkscape:export-xdpi="222"
|
||||
inkscape:export-ydpi="222" />
|
||||
<circle
|
||||
style="display:inline;opacity:1;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.60350877;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="path1890-4-5-46-7"
|
||||
cx="43.868862"
|
||||
cy="152.47136"
|
||||
r="0.1795717"
|
||||
inkscape:export-filename="/home/adrien/src/maman/assets/le-sol-cailloux-64.png"
|
||||
inkscape:export-xdpi="222"
|
||||
inkscape:export-ydpi="222" />
|
||||
<circle
|
||||
style="display:inline;opacity:1;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.60350877;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="path1890-4-5-46-06"
|
||||
cx="38.4827"
|
||||
cy="150.79408"
|
||||
r="0.1795717"
|
||||
inkscape:export-filename="/home/adrien/src/maman/assets/le-sol-cailloux-64.png"
|
||||
inkscape:export-xdpi="222"
|
||||
inkscape:export-ydpi="222" />
|
||||
<circle
|
||||
style="display:inline;opacity:1;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.60350877;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
||||
id="path1890-4-5-46-1"
|
||||
cx="39.404018"
|
||||
cy="149.47116"
|
||||
r="0.1795717"
|
||||
inkscape:export-filename="/home/adrien/src/maman/assets/le-sol-cailloux-64.png"
|
||||
inkscape:export-xdpi="222"
|
||||
inkscape:export-ydpi="222" />
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
Before Width: | Height: | Size: 90 KiB After Width: | Height: | Size: 95 KiB |
Loading…
Reference in a new issue