western-world 3.0.548 → 3.0.549
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/src/defs/{bird.js → bird/bird.js} +3 -0
- package/src/{scss/cells/mixins → defs/bird}/bird.scss +1 -1
- package/src/scss/cells/decided_to_stop_the_game.scss +0 -2
- package/src/scss/cells/desert_island.scss +0 -3
- package/src/scss/cells/shipyards.scss +0 -3
- package/src/scss/cells/tax_on_plantations.scss +0 -3
- package/src/svg/index.js +1 -1
package/package.json
CHANGED
|
@@ -1,8 +1,11 @@
|
|
|
1
|
+
const style = require('!!css-loader!sass-loader!./bird.scss').default;
|
|
2
|
+
|
|
1
3
|
export const bird = `
|
|
2
4
|
<symbol id="bird" viewBox="0 0 8192 8192">
|
|
3
5
|
<style type="text/css">
|
|
4
6
|
.bird_st0{fill: #FFFFFF;}
|
|
5
7
|
.bird_st1{fill: var(--bird-color, #FFFFFF);}
|
|
8
|
+
${style}
|
|
6
9
|
</style>
|
|
7
10
|
<defs>
|
|
8
11
|
<mask id="mask-eye">
|
|
@@ -2,14 +2,12 @@
|
|
|
2
2
|
@import './mixins/grass';
|
|
3
3
|
@import './mixins/player_lock';
|
|
4
4
|
@import './mixins/cat';
|
|
5
|
-
@import './mixins/bird';
|
|
6
5
|
|
|
7
6
|
|
|
8
7
|
.animated {
|
|
9
8
|
.decided_to_stop_the_game {
|
|
10
9
|
@include grassMixin;
|
|
11
10
|
@include catMixin;
|
|
12
|
-
@include birdMixin;
|
|
13
11
|
|
|
14
12
|
#smoke_x5F_1,
|
|
15
13
|
#smoke_x5F_2 {
|
package/src/svg/index.js
CHANGED
|
@@ -11,7 +11,7 @@ import { player_lock } from '../defs/player_lock';
|
|
|
11
11
|
import { note_1, note_2, note_3, note_4 } from '../defs/music_notes';
|
|
12
12
|
import { enemyFlagSvgStyles, flagStarsStyles, myFlagSvgStyles } from '../western-world.utils.constants';
|
|
13
13
|
import { black_background } from '../defs/black-background';
|
|
14
|
-
import { bird } from '../defs/bird';
|
|
14
|
+
import { bird } from '../defs/bird/bird';
|
|
15
15
|
import { clouds_29 } from '../defs/clouds_29/clouds_29';
|
|
16
16
|
import { clouds_49 } from '../defs/clouds_49/clouds_49';
|
|
17
17
|
import { clouds_63 } from '../defs/clouds_63/clouds_63';
|