# MinaCoding2024_Playable

# PoeticGames

For the **14th day of #MinaCoding2024 : "Play With Someone", PoeticGames** takes two previous coded poetry formats as seen below and turns them into a playable poetic game:

## **Poetic Carousel 3**

[https://blog.illestpreacha.com/napowrimo-poetic-comparison](https://blog.illestpreacha.com/napowrimo-poetic-comparison)

For the 29th day of **NaPoWriMo/NaPoGenMo** 2024, ***Poetic Carousel 3*** contains rules and prompts coded in **Ruby & Python.** This is done by making a comparison between 6 random assortments of the alphabet and only outputting, letters that match.

## **SenseCarousel**

[https://blog.illestpreacha.com/napowrigenmo24senses](https://blog.illestpreacha.com/napowrigenmo24senses)

For the 30th day of **NaPoWriMo/NaPoGenMo** 2024, ***SenseCarousel*** contains rules and prompts coded in **Python.** This is done by having four shuffled arrays of the senses and comparing them to one another. If the same sense is in the same position in the array, it gets called to the final output of the poem.

## Poem 1

```ocaml
Redness
Mirroring Meatiness
Silently
Externally
Hitting Icicles
Through the sounds that can be seen as the nose inhales
```

### Rules for This Set

```ocaml
['Sight']
['Sight', 'Taste']
['Hearing']
[]
['Touch']
['Hearing', 'Sight', 'Smell']

['r']
['m', 'w']
['s']
['x']
['h', 'i']
[]
```

## Poem 2

```ocaml
Routines
Mimicking Wolverines
Scented
Xtremes
Hastefully Ingestion
Spraying
```

### Rules for This Set

```ocaml
[]
['Sight']
['Smell']
['Taste']
['Taste']
['Smell']

['r']
['m', 'w']
['s']
['x']
['h', 'i']
[]
```
