~fgaz/blobfox

cf1bc00ad2cd876dd082df777ecd049e2aed1168 — Shad Amethyst 1 year, 3 months ago e848be8 + 7b537be
Merge pull request 'Add new pride flags and happy coffee' (#2) from Spaceman/blobfox:saiph-additions into main

Reviewed-on: https://git.shadamethyst.xyz/adri326/blobfox/pulls/2
M README.md => README.md +1 -1
@@ 66,7 66,7 @@ For simplicity, the authors of the different parts of this project have been gro
- Feuerfuchs: [original website (down as of writing)](https://feuerfuchs.dev/), [archive](https://web.archive.org/web/20211115174913/https://www.feuerfuchs.dev/en/projects/blobfox-emojis/)
- [LambdAurora](https://git.lambdaurora.dev/lambdaurora/), hosts [a mirror](https://git.lambdaurora.dev/lambdaurora/blobfox)
- [Shad Amethyst](https://git.shadamethyst.xyz/adri326/)

- [LostQuasar](https://github.com/LostQuasar)
<!-- Add yourself here as you please :) -->
<!-- If we get more people, then we can create a CONTRIBUTORS.txt file -->


A species/blobfox/assets/flag_agender.svg => species/blobfox/assets/flag_agender.svg +9 -0
@@ 0,0 1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="800" viewBox="0 0 128 76.8">
  <g>
    <rect height="76.8" width="128" fill="#000000" />
    <rect height="54.85" y="10.97" width="128" fill="#bcc4c7" />
    <rect height="32.91" y="21.94" width="128" fill="#ffffff" />
    <rect height="10.97" y="32.91" width="128" fill="#b7f684" />
  </g>
</svg>

A species/blobfox/assets/flag_trans.svg => species/blobfox/assets/flag_trans.svg +8 -0
@@ 0,0 1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="800" viewBox="0 0 128 76.8">
  <g>
    <rect height="76.8" width="128" fill="#5bcefa" />
    <rect height="46.08" y="15.36" width="128" fill="#f5a9b8" />
    <rect height="15.36" y="30.72" width="128" fill="#ffffff" />
  </g>
</svg>

M species/blobfox/species.toml => species/blobfox/species.toml +4 -0
@@ 42,7 42,9 @@ comfy_boop = ["body-comfy", "boop", "eyes-basic", "mouth-w"]

stabby = ["body-basic", "holding", "eyes-evil", "mouth-w", "hand-3c", "left-hand"]
gordon = ["body-basic", "holding", "eyes-basic", "mouth-w", "hand-3c", "left-hand"]

coffee = ["body-basic", "holding", "eyes-basic", "mouth-w", "hand-cup", "right-hand"]
coffee_happy = ["body-basic", "holding", "eyes-happy", "mouth-w", "hand-cup", "right-hand"]

blush = ["body-basic", "ear-blush", "eyes-closed", "blush", "mouth-hmpf"]



@@ 55,6 57,8 @@ heart_enby = ["body-basic", "eyes-basic", "left-hand", "right-hand", "holding", 
heart_ace = ["body-basic", "eyes-basic", "left-hand", "right-hand", "holding", "big-object"]
heart_demisexual = ["body-basic", "eyes-basic", "left-hand", "right-hand", "holding", "big-object"]
heart_pan = ["body-basic", "eyes-basic", "left-hand", "right-hand", "holding", "big-object"]
heart_trans = ["body-basic", "eyes-basic", "left-hand", "right-hand", "holding", "big-object"]
heart_agender = ["body-basic", "eyes-basic", "left-hand", "right-hand", "holding", "big-object"]

# Snuggle
snuggle_left = ["body-basic", "eyes-closed", "mouth-w"]

A species/blobfox/variants/coffee_happy.mustache => species/blobfox/variants/coffee_happy.mustache +10 -0
@@ 0,0 1,10 @@
{{>header}}
    {{>body}}

    {{>eyes}}
    {{>nose}}
    {{>mouth}}

    {{>coffee}}
    {{>hands}}
{{>footer}}

A species/blobfox/variants/heart_agender.mustache => species/blobfox/variants/heart_agender.mustache +25 -0
@@ 0,0 1,25 @@
{{>header}}
    {{>body}}

    {{>eyes}}

    <defs>
        <clipPath id="clip-heart">
            {{#heart}}#heart{{/heart}}
        </clipPath>
    </defs>

    <g blobfox-only-size="true">
        {{#heart}}#heart{{/heart}}
    </g>

    <g clip-path="url(#clip-heart)" blobfox-ignore-size="true">
        <g transform="rotate(9) scale(1.05 1.05) translate(10 45)">
            {{#flag_agender}}{{/flag_agender}}
        </g>
    </g>

    {{#set-fill}} rgba(255,255,255,0.5) | {{#heart}}#heart-reflection{{/heart}} {{/set-fill}}

    {{>hands}}
{{>footer}}

A species/blobfox/variants/heart_trans.mustache => species/blobfox/variants/heart_trans.mustache +25 -0
@@ 0,0 1,25 @@
{{>header}}
    {{>body}}

    {{>eyes}}

    <defs>
        <clipPath id="clip-heart">
            {{#heart}}#heart{{/heart}}
        </clipPath>
    </defs>

    <g blobfox-only-size="true">
        {{#heart}}#heart{{/heart}}
    </g>

    <g clip-path="url(#clip-heart)" blobfox-ignore-size="true">
        <g transform="rotate(9) scale(1.05 1.05) translate(10 45)">
            {{#flag_trans}}{{/flag_trans}}
        </g>
    </g>

    {{#set-fill}} rgba(255,255,255,0.5) | {{#heart}}#heart-reflection{{/heart}} {{/set-fill}}

    {{>hands}}
{{>footer}}