Added Ellie/data files
1391
src/Ellie/data/aliases.yml
Normal file
91
src/Ellie/data/bot.yml
Normal file
|
@ -0,0 +1,91 @@
|
|||
# DO NOT CHANGE
|
||||
version: 5
|
||||
# Most commands, when executed, have a small colored line
|
||||
# next to the response. The color depends whether the command
|
||||
# is completed, errored or in progress (pending)
|
||||
# Color settings below are for the color of those lines.
|
||||
# To get color's hex, you can go here https://htmlcolorcodes.com/
|
||||
# and copy the hex code fo your selected color (marked as #)
|
||||
color:
|
||||
# Color used for embed responses when command successfully executes
|
||||
ok: 00e584
|
||||
# Color used for embed responses when command has an error
|
||||
error: ee281f
|
||||
# Color used for embed responses while command is doing work or is in progress
|
||||
pending: faa61a
|
||||
# Default bot language. It has to be in the list of supported languages (.langli)
|
||||
defaultLocale: en-US
|
||||
# Style in which executed commands will show up in the console.
|
||||
# Allowed values: Simple, Normal, None
|
||||
consoleOutputType: Normal
|
||||
# Whether the bot will check for new releases every hour
|
||||
checkForUpdates: true
|
||||
# Do you want any messages sent by users in Bot's DM to be forwarded to the owner(s)?
|
||||
forwardMessages: false
|
||||
# Do you want the message to be forwarded only to the first owner specified in the list of owners (in creds.yml),
|
||||
# or all owners? (this might cause the bot to lag if there's a lot of owners specified)
|
||||
forwardToAllOwners: false
|
||||
# Any messages sent by users in Bot's DM to be forwarded to the specified channel.
|
||||
# This option will only work when ForwardToAllOwners is set to false
|
||||
forwardToChannel:
|
||||
# When a user DMs the bot with a message which is not a command
|
||||
# they will receive this message. Leave empty for no response. The string which will be sent whenever someone DMs the bot.
|
||||
# Supports embeds. How it looks: https://puu.sh/B0BLV.png
|
||||
dmHelpText: |-
|
||||
{"description": "Type `%prefix%h` for help."}
|
||||
# Only users who send a DM to the bot containing one of the specified words will get a DmHelpText response.
|
||||
# Case insensitive.
|
||||
# Leave empty to reply with DmHelpText to every DM.
|
||||
dmHelpTextKeywords:
|
||||
- help
|
||||
- commands
|
||||
- cmds
|
||||
- module
|
||||
- can you do
|
||||
# This is the response for the .h command
|
||||
helpText: |-
|
||||
{
|
||||
"title": "To invite me to your server, use this link",
|
||||
"description": "https://discord.com/oauth2/authorize?client_id={0}&scope=bot&permissions=66186303",
|
||||
"color": 53380,
|
||||
"thumbnail": "https://ellie.gcoms.xyz/Ellie.png",
|
||||
"fields": [
|
||||
{
|
||||
"name": "Useful help commands",
|
||||
"value": "`%bot.prefix%modules` Lists all bot modules.
|
||||
`%prefix%h CommandName` Shows some help about a specific command.
|
||||
`%prefix%commands ModuleName` Lists all commands in a module.",
|
||||
"inline": false
|
||||
},
|
||||
{
|
||||
"name": "List of all Commands",
|
||||
"value": "https://commands.elliebot.net",
|
||||
"inline": false
|
||||
},
|
||||
{
|
||||
"name": "Nadeko Support Server",
|
||||
"value": "https://discord.elliebot.net/ ",
|
||||
"inline": true
|
||||
}
|
||||
]
|
||||
}
|
||||
# List of modules and commands completely blocked on the bot
|
||||
blocked:
|
||||
commands: []
|
||||
modules: []
|
||||
# Which string will be used to recognize the commands
|
||||
prefix: .
|
||||
# Toggles whether your bot will group greet/bye messages into a single message every 5 seconds.
|
||||
# 1st user who joins will get greeted immediately
|
||||
# If more users join within the next 5 seconds, they will be greeted in groups of 5.
|
||||
# This will cause %user.mention% and other placeholders to be replaced with multiple users.
|
||||
# Keep in mind this might break some of your embeds - for example if you have %user.avatar% in the thumbnail,
|
||||
# it will become invalid, as it will resolve to a list of avatars of grouped users.
|
||||
# note: This setting is primarily used if you're afraid of raids, or you're running medium/large bots where some
|
||||
# servers might get hundreds of people join at once. This is used to prevent the bot from getting ratelimited,
|
||||
# and (slightly) reduce the greet spam in those servers.
|
||||
groupGreets: false
|
||||
# Whether the bot will rotate through all specified statuses.
|
||||
# This setting can be changed via .ropl command.
|
||||
# See RotatingStatuses submodule in Administration.
|
||||
rotateStatuses: false
|
BIN
src/Ellie/data/fonts/NotoSans-Bold.ttf
Normal file
BIN
src/Ellie/data/fonts/Symbola-10.24.ttf
Normal file
BIN
src/Ellie/data/fonts/Uni Sans.ttf
Normal file
BIN
src/Ellie/data/fonts/dotty.ttf
Normal file
261
src/Ellie/data/gambling.yml
Normal file
|
@ -0,0 +1,261 @@
|
|||
# DO NOT CHANGE
|
||||
version: 6
|
||||
# Currency settings
|
||||
currency:
|
||||
# What is the emoji/character which represents the currency
|
||||
sign: "💵"
|
||||
# What is the name of the currency
|
||||
name: Ellie Money
|
||||
# For how long will the transactions be kept in the database (curtrs)
|
||||
# Set 0 to disable cleanup (keep transactions forever)
|
||||
transactionsLifetime: 0
|
||||
# Minimum amount users can bet (>=0)
|
||||
minBet: 0
|
||||
# Maximum amount users can bet
|
||||
# Set 0 for unlimited
|
||||
maxBet: 0
|
||||
# Settings for betflip command
|
||||
betFlip:
|
||||
# Bet multiplier if user guesses correctly
|
||||
multiplier: 1.95
|
||||
# Settings for betroll command
|
||||
betRoll:
|
||||
# When betroll is played, user will roll a number 0-100.
|
||||
# This setting will describe which multiplier is used for when the roll is higher than the given number.
|
||||
# Doesn't have to be ordered.
|
||||
pairs:
|
||||
- whenAbove: 99
|
||||
multiplyBy: 10
|
||||
- whenAbove: 90
|
||||
multiplyBy: 4
|
||||
- whenAbove: 66
|
||||
multiplyBy: 2
|
||||
# Automatic currency generation settings.
|
||||
generation:
|
||||
# when currency is generated, should it also have a random password
|
||||
# associated with it which users have to type after the .pick command
|
||||
# in order to get it
|
||||
hasPassword: true
|
||||
# Every message sent has a certain % chance to generate the currency
|
||||
# specify the percentage here (1 being 100%, 0 being 0% - for example
|
||||
# default is 0.02, which is 2%
|
||||
chance: 0.02
|
||||
# How many seconds have to pass for the next message to have a chance to spawn currency
|
||||
genCooldown: 10
|
||||
# Minimum amount of currency that can spawn
|
||||
minAmount: 1
|
||||
# Maximum amount of currency that can spawn.
|
||||
# Set to the same value as MinAmount to always spawn the same amount
|
||||
maxAmount: 1
|
||||
# Settings for timely command
|
||||
# (letting people claim X amount of currency every Y hours)
|
||||
timely:
|
||||
# How much currency will the users get every time they run .timely command
|
||||
# setting to 0 or less will disable this feature
|
||||
amount: 120
|
||||
# How often (in hours) can users claim currency with .timely command
|
||||
# setting to 0 or less will disable this feature
|
||||
cooldown: 12
|
||||
# How much will each user's owned currency decay over time.
|
||||
decay:
|
||||
# Percentage of user's current currency which will be deducted every 24h.
|
||||
# 0 - 1 (1 is 100%, 0.5 50%, 0 disabled)
|
||||
percent: 0
|
||||
# Maximum amount of user's currency that can decay at each interval. 0 for unlimited.
|
||||
maxDecay: 0
|
||||
# Only users who have more than this amount will have their currency decay.
|
||||
minThreshold: 99
|
||||
# How often, in hours, does the decay run. Default is 24 hours
|
||||
hourInterval: 24
|
||||
# Settings for LuckyLadder command
|
||||
luckyLadder:
|
||||
# Self-Explanatory. Has to have 8 values, otherwise the command won't work.
|
||||
multipliers:
|
||||
- 2.4
|
||||
- 1.7
|
||||
- 1.5
|
||||
- 1.2
|
||||
- 0.5
|
||||
- 0.3
|
||||
- 0.2
|
||||
- 0.1
|
||||
# Settings related to waifus
|
||||
waifu:
|
||||
# Minimum price a waifu can have
|
||||
minPrice: 50
|
||||
multipliers:
|
||||
# Multiplier for waifureset. Default 150.
|
||||
# Formula (at the time of writing this):
|
||||
# price = (waifu_price * 1.25f) + ((number_of_divorces + changes_of_heart + 2) * WaifuReset) rounded up
|
||||
waifuReset: 150
|
||||
# The minimum amount of currency that you have to pay
|
||||
# in order to buy a waifu who doesn't have a crush on you.
|
||||
# Default is 1.1
|
||||
# Example: If a waifu is worth 100, you will have to pay at least 100 * NormalClaim currency to claim her.
|
||||
# (100 * 1.1 = 110)
|
||||
normalClaim: 1.1
|
||||
# The minimum amount of currency that you have to pay
|
||||
# in order to buy a waifu that has a crush on you.
|
||||
# Default is 0.88
|
||||
# Example: If a waifu is worth 100, you will have to pay at least 100 * CrushClaim currency to claim her.
|
||||
# (100 * 0.88 = 88)
|
||||
crushClaim: 0.88
|
||||
# When divorcing a waifu, her new value will be her current value multiplied by this number.
|
||||
# Default 0.75 (meaning will lose 25% of her value)
|
||||
divorceNewValue: 0.75
|
||||
# All gift prices will be multiplied by this number.
|
||||
# Default 1 (meaning no effect)
|
||||
allGiftPrices: 1.0
|
||||
# What percentage of the value of the gift will a waifu gain when she's gifted.
|
||||
# Default 0.95 (meaning 95%)
|
||||
# Example: If a waifu is worth 1000, and she receives a gift worth 100, her new value will be 1095)
|
||||
giftEffect: 0.95
|
||||
# What percentage of the value of the gift will a waifu lose when she's gifted a gift marked as 'negative'.
|
||||
# Default 0.5 (meaning 50%)
|
||||
# Example: If a waifu is worth 1000, and she receives a negative gift worth 100, her new value will be 950)
|
||||
negativeGiftEffect: 0.50
|
||||
# Settings for periodic waifu price decay.
|
||||
# Waifu price decays only if the waifu has no claimer.
|
||||
decay:
|
||||
# Percentage (0 - 100) of the waifu value to reduce.
|
||||
# Set 0 to disable
|
||||
# For example if a waifu has a price of 500$, setting this value to 10 would reduce the waifu value by 10% (50$)
|
||||
percent: 0
|
||||
# How often to decay waifu values, in hours
|
||||
hourInterval: 24
|
||||
# Minimum waifu price required for the decay to be applied.
|
||||
# For example if this value is set to 300, any waifu with the price 300 or less will not experience decay.
|
||||
minPrice: 300
|
||||
# List of items available for gifting.
|
||||
# If negative is true, gift will instead reduce waifu value.
|
||||
items:
|
||||
- itemEmoji: "🥔"
|
||||
price: 5
|
||||
name: Potato
|
||||
- itemEmoji: "🍪"
|
||||
price: 10
|
||||
name: Cookie
|
||||
- itemEmoji: "🥖"
|
||||
price: 20
|
||||
name: Bread
|
||||
- itemEmoji: "🍭"
|
||||
price: 30
|
||||
name: Lollipop
|
||||
- itemEmoji: "🌹"
|
||||
price: 50
|
||||
name: Rose
|
||||
- itemEmoji: "🍺"
|
||||
price: 70
|
||||
name: Beer
|
||||
- itemEmoji: "🌮"
|
||||
price: 85
|
||||
name: Taco
|
||||
- itemEmoji: "💌"
|
||||
price: 100
|
||||
name: LoveLetter
|
||||
- itemEmoji: "🥛"
|
||||
price: 125
|
||||
name: Milk
|
||||
- itemEmoji: "🍕"
|
||||
price: 150
|
||||
name: Pizza
|
||||
- itemEmoji: "🍫"
|
||||
price: 200
|
||||
name: Chocolate
|
||||
- itemEmoji: "🍦"
|
||||
price: 250
|
||||
name: Icecream
|
||||
- itemEmoji: "🍣"
|
||||
price: 300
|
||||
name: Sushi
|
||||
- itemEmoji: "🍚"
|
||||
price: 400
|
||||
name: Rice
|
||||
- itemEmoji: "🍉"
|
||||
price: 500
|
||||
name: Watermelon
|
||||
- itemEmoji: "🍱"
|
||||
price: 600
|
||||
name: Bento
|
||||
- itemEmoji: "🎟"
|
||||
price: 800
|
||||
name: MovieTicket
|
||||
- itemEmoji: "🍰"
|
||||
price: 1000
|
||||
name: Cake
|
||||
- itemEmoji: "📔"
|
||||
price: 1500
|
||||
name: Book
|
||||
- itemEmoji: "🐱"
|
||||
price: 2000
|
||||
name: Cat
|
||||
- itemEmoji: "🐶"
|
||||
price: 2001
|
||||
name: Dog
|
||||
- itemEmoji: "🐼"
|
||||
price: 2500
|
||||
name: Panda
|
||||
- itemEmoji: "💄"
|
||||
price: 3000
|
||||
name: Lipstick
|
||||
- itemEmoji: "👛"
|
||||
price: 3500
|
||||
name: Purse
|
||||
- itemEmoji: "📱"
|
||||
price: 4000
|
||||
name: iPhone
|
||||
- itemEmoji: "👗"
|
||||
price: 4500
|
||||
name: Dress
|
||||
- itemEmoji: "💻"
|
||||
price: 5000
|
||||
name: Laptop
|
||||
- itemEmoji: "🎻"
|
||||
price: 7500
|
||||
name: Violin
|
||||
- itemEmoji: "🎹"
|
||||
price: 8000
|
||||
name: Piano
|
||||
- itemEmoji: "🚗"
|
||||
price: 9000
|
||||
name: Car
|
||||
- itemEmoji: "💍"
|
||||
price: 10000
|
||||
name: Ring
|
||||
- itemEmoji: "🛳"
|
||||
price: 12000
|
||||
name: Ship
|
||||
- itemEmoji: "🏠"
|
||||
price: 15000
|
||||
name: House
|
||||
- itemEmoji: "🚁"
|
||||
price: 20000
|
||||
name: Helicopter
|
||||
- itemEmoji: "🚀"
|
||||
price: 30000
|
||||
name: Spaceship
|
||||
- itemEmoji: "🌕"
|
||||
price: 50000
|
||||
name: Moon
|
||||
- itemEmoji: "🥀"
|
||||
price: 100
|
||||
name: WiltedRose
|
||||
negative: true
|
||||
- itemEmoji: ✂️
|
||||
price: 1000
|
||||
name: Haircut
|
||||
negative: true
|
||||
- itemEmoji: "🧻"
|
||||
price: 10000
|
||||
name: ToiletPaper
|
||||
negative: true
|
||||
# Amount of currency selfhosters will get PER pledged dollar CENT.
|
||||
# 1 = 100 currency per $. Used almost exclusively on public ellie.
|
||||
patreonCurrencyPerCent: 1
|
||||
# Currency reward per vote.
|
||||
# This will work only if you've set up VotesApi and correct credentials for topgg and/or discords voting
|
||||
voteReward: 100
|
||||
# Slot config
|
||||
slots:
|
||||
# Hex value of the color which the numbers on the slot image will have.
|
||||
currencyFontColor: ff0000
|
70
src/Ellie/data/games.yml
Normal file
|
@ -0,0 +1,70 @@
|
|||
# DO NOT CHANGE
|
||||
version: 2
|
||||
# Hangman related settings (.hangman command)
|
||||
hangman:
|
||||
# The amount of currency awarded to the winner of a hangman game
|
||||
currencyReward: 0
|
||||
# Trivia related settings (.t command)
|
||||
trivia:
|
||||
# The amount of currency awarded to the winner of the trivia game.
|
||||
currencyReward: 0
|
||||
# Users won't be able to start trivia games which have
|
||||
# a smaller win requirement than the one specified by this setting.
|
||||
minimumWinReq: 1
|
||||
# List of responses for the .8ball command. A random one will be selected every time
|
||||
eightBallResponses:
|
||||
- Most definitely yes.
|
||||
- For sure.
|
||||
- Totally!
|
||||
- Of course!
|
||||
- As I see it, yes.
|
||||
- My sources say yes.
|
||||
- Yes.
|
||||
- Most likely.
|
||||
- Perhaps...
|
||||
- Maybe...
|
||||
- Hm, not sure.
|
||||
- It is uncertain.
|
||||
- Ask me again later.
|
||||
- Don't count on it.
|
||||
- Probably not.
|
||||
- Very doubtful.
|
||||
- Most likely no.
|
||||
- Nope.
|
||||
- No.
|
||||
- My sources say no.
|
||||
- Don't even think about it.
|
||||
- Definitely no.
|
||||
- NO - It may cause disease contraction!
|
||||
# List of animals which will be used for the animal race game (.race)
|
||||
raceAnimals:
|
||||
- icon: "🐼"
|
||||
name: Panda
|
||||
- icon: "🐻"
|
||||
name: Bear
|
||||
- icon: "🐧"
|
||||
name: Pengu
|
||||
- icon: "🐨"
|
||||
name: Koala
|
||||
- icon: "🐬"
|
||||
name: Dolphin
|
||||
- icon: "🐞"
|
||||
name: Ladybird
|
||||
- icon: "🦀"
|
||||
name: Crab
|
||||
- icon: "🦄"
|
||||
name: Unicorn
|
||||
# Which chatbot API should bot use.
|
||||
# 'cleverbot' - bot will use Cleverbot API.
|
||||
# 'gpt3' - bot will use GPT-3 API
|
||||
chatBot: gpt3
|
||||
|
||||
chatGpt:
|
||||
# Which GPT-3 Model should bot use.
|
||||
# 'ada001' - cheapest and fastest
|
||||
# 'babbage001' - 2nd option
|
||||
# 'curie001' - 3rd option
|
||||
# 'davinci003' - Most expensive, slowest
|
||||
model: davinci003
|
||||
# The maximum number of tokens to use per GPT-3 API call
|
||||
maxTokens: 100
|
276
src/Ellie/data/hangman/animals.yml
Normal file
|
@ -0,0 +1,276 @@
|
|||
- word: Alligator
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Alligator.jpg
|
||||
- word: Alpaca
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Alpaca.jpg
|
||||
- word: Anaconda
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Anaconda.jpg
|
||||
- word: Ant
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Ant.jpg
|
||||
- word: Antelope
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Antelope.jpg
|
||||
- word: Ape
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Ape.jpg
|
||||
- word: Armadillo
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Armadillo.jpg
|
||||
- word: Baboon
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Baboon.jpg
|
||||
- word: Badger
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Badger.jpg
|
||||
- word: Bald Eagle
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Bald Eagle.jpg
|
||||
- word: Barracuda
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Barracuda.jpg
|
||||
- word: Bat
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Bat.jpg
|
||||
- word: Bear
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Bear.jpg
|
||||
- word: Beaver
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Beaver.jpg
|
||||
- word: Bedbug
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Bedbug.jpg
|
||||
- word: Bee
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Bee.jpg
|
||||
- word: Beetle
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Beetle.jpg
|
||||
- word: Bird
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Bird.jpg
|
||||
- word: Bison
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Bison.jpg
|
||||
- word: Puma
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Puma.jpg
|
||||
- word: Black Widow
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Black Widow.jpg
|
||||
- word: Blue Jay
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Blue Jay.jpg
|
||||
- word: Blue Whale
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Blue Whale.jpg
|
||||
- word: Bobcat
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Bobcat.jpg
|
||||
- word: Buffalo
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Buffalo.jpg
|
||||
- word: Butterfly
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Butterfly.jpg
|
||||
- word: Buzzard
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Buzzard.jpg
|
||||
- word: Camel
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Camel.jpg
|
||||
- word: Carp
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Carp.jpg
|
||||
- word: Cat
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Cat.jpg
|
||||
- word: Caterpillar
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Caterpillar.jpg
|
||||
- word: Catfish
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Catfish.jpg
|
||||
- word: Cheetah
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Cheetah.jpg
|
||||
- word: Chicken
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Chicken.jpg
|
||||
- word: Chimpanzee
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Chimpanzee.jpg
|
||||
- word: Chipmunk
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Chipmunk.jpg
|
||||
- word: Cobra
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Cobra.jpg
|
||||
- word: Cod
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Cod.jpg
|
||||
- word: Condor
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Condor.jpg
|
||||
- word: Cougar
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Cougar.jpg
|
||||
- word: Cow
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Cow.jpg
|
||||
- word: Coyote
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Coyote.jpg
|
||||
- word: Crab
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Crab.jpg
|
||||
- word: Crane
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Crane.jpg
|
||||
- word: Cricket
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Cricket.jpg
|
||||
- word: Crocodile
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Crocodile.jpg
|
||||
- word: Crow
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Crow.jpg
|
||||
- word: Cuckoo
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Cuckoo.jpg
|
||||
- word: Deer
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Deer.jpg
|
||||
- word: Dinosaur
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Dinosaur.jpg
|
||||
- word: Dog
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Dog.jpg
|
||||
- word: Dolphin
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Dolphin.jpg
|
||||
- word: Donkey
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Donkey.jpg
|
||||
- word: Dove
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Dove.jpg
|
||||
- word: Dragonfly
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Dragonfly.jpg
|
||||
- word: Duck
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Duck.jpg
|
||||
- word: Eel
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Eel.jpg
|
||||
- word: Elephant
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Elephant.jpg
|
||||
- word: Emu
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Emu.jpg
|
||||
- word: Falcon
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Falcon.jpg
|
||||
- word: Ferret
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Ferret.jpg
|
||||
- word: Finch
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Finch.jpg
|
||||
- word: Fish
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Fish.jpg
|
||||
- word: Flamingo
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Flamingo.jpg
|
||||
- word: Flea
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Flea.jpg
|
||||
- word: Fly
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Fly.jpg
|
||||
- word: Fox
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Fox.jpg
|
||||
- word: Frog
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Frog.jpg
|
||||
- word: Goat
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Goat.jpg
|
||||
- word: Golden Eagle
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Golden Eagle.jpg
|
||||
- word: Goose
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Goose.jpg
|
||||
- word: Gopher
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Gopher.jpg
|
||||
- word: Gorilla
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Gorilla.jpg
|
||||
- word: Grasshopper
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Grasshopper.jpg
|
||||
- word: Hamster
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Hamster.jpg
|
||||
- word: Hare
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Hare.jpg
|
||||
- word: Hawk
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Hawk.jpg
|
||||
- word: Hippopotamus
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Hippopotamus.jpg
|
||||
- word: Horse
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Horse.jpg
|
||||
- word: Hummingbird
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Hummingbird.jpg
|
||||
- word: Husky
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Husky.jpg
|
||||
- word: Iguana
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Iguana.jpg
|
||||
- word: Impala
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Impala.jpg
|
||||
- word: Kangaroo
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Kangaroo.jpg
|
||||
- word: Ladybug
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Ladybug.jpg
|
||||
- word: Leopard
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Leopard.jpg
|
||||
- word: Lion
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Lion.jpg
|
||||
- word: Lizard
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Lizard.jpg
|
||||
- word: Llama
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Llama.jpg
|
||||
- word: Lobster
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Lobster.jpg
|
||||
- word: Mongoose
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Mongoose.jpg
|
||||
- word: Monitor lizard
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Monitor lizard.jpg
|
||||
- word: Monkey
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Monkey.jpg
|
||||
- word: Moose
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Moose.jpg
|
||||
- word: Mosquito
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Mosquito.jpg
|
||||
- word: Moth
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Moth.jpg
|
||||
- word: Mountain goat
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Mountain goat.jpg
|
||||
- word: Mouse
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Mouse.jpg
|
||||
- word: Mule
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Mule.jpg
|
||||
- word: Octopus
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Octopus.jpg
|
||||
- word: Orca
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Orca.jpg
|
||||
- word: Ostrich
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Ostrich.jpg
|
||||
- word: Otter
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Otter.jpg
|
||||
- word: Owl
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Owl.jpg
|
||||
- word: Ox
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Ox.jpg
|
||||
- word: Oyster
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Oyster.jpg
|
||||
- word: Panda
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Panda.jpg
|
||||
- word: Parrot
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Parrot.jpg
|
||||
- word: Peacock
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Peacock.jpg
|
||||
- word: Pelican
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Pelican.jpg
|
||||
- word: Penguin
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Penguin.jpg
|
||||
- word: Perch
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Perch.jpg
|
||||
- word: Pheasant
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Pheasant.jpg
|
||||
- word: Pig
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Pig.jpg
|
||||
- word: Pigeon
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Pigeon.jpg
|
||||
- word: Polar bear
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Polar bear.jpg
|
||||
- word: Porcupine
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Porcupine.jpg
|
||||
- word: Quail
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Quail.jpg
|
||||
- word: Rabbit
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Rabbit.jpg
|
||||
- word: Raccoon
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Raccoon.jpg
|
||||
- word: Rat
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Rat.jpg
|
||||
- word: Rattlesnake
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Rattlesnake.jpg
|
||||
- word: Raven
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Raven.jpg
|
||||
- word: Reindeer
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Reindeer.jpg
|
||||
- word: Rooster
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Rooster.jpg
|
||||
- word: Sea lion
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Sea lion.jpg
|
||||
- word: Seal
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Seal.jpg
|
||||
- word: Sheep
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Sheep.jpg
|
||||
- word: Shrew
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Shrew.jpg
|
||||
- word: Skunk
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Skunk.jpg
|
||||
- word: Snail
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Snail.jpg
|
||||
- word: Snake
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Snake.jpg
|
||||
- word: Spider
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Spider.jpg
|
||||
- word: Tiger
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Tiger.jpg
|
||||
- word: Walrus
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Walrus.jpg
|
||||
- word: Whale
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Whale.jpg
|
||||
- word: Wolf
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Wolf.jpg
|
||||
- word: Zebra
|
||||
imageUrl: https://cdn.nadeko.bot/animals/Zebra
|
766
src/Ellie/data/hangman/anime.yml
Normal file
|
@ -0,0 +1,766 @@
|
|||
- word: 'Fullmetal Alchemist: Brotherhood'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Fullmetal_Alchemist_Brotherhood.jpg
|
||||
- word: Steins;Gate
|
||||
imageUrl: https://cdn.nadeko.bot/animu/SteinsGate.jpg
|
||||
- word: Hunter x Hunter (2011)
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Hunter_x_Hunter_2011.jpg
|
||||
- word: Ginga Eiyuu Densetsu
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Ginga_Eiyuu_Densetsu.jpg
|
||||
- word: 'Fruits Basket: The Final'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Fruits_Basket_The_Final.jpg
|
||||
- word: Koe no Katachi
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Koe_no_Katachi.jpg
|
||||
- word: 'Clannad: After Story'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Clannad_After_Story.jpg
|
||||
- word: Gintama
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Gintama.jpg
|
||||
- word: Kimi no Na wa.
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Kimi_no_Na_wa..jpg
|
||||
- word: 'Code Geass: Hangyaku no Lelouch R2'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Code_Geass_Hangyaku_no_Lelouch_R2.jpg
|
||||
- word: 'Haikyuu!!: Karasuno Koukou vs. Shiratorizawa Gakuen Koukou'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Haikyuu_Karasuno_Koukou_vs._Shiratorizawa_Gakuen_Koukou.jpg
|
||||
- word: Mob Psycho 100 II
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Mob_Psycho_100_II.jpg
|
||||
- word: 'Kizumonogatari III: Reiketsu-hen'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Kizumonogatari_III_Reiketsu-hen.jpg
|
||||
- word: Sen to Chihiro no Kamikakushi
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Sen_to_Chihiro_no_Kamikakushi.jpg
|
||||
- word: Violet Evergarden Movie
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Violet_Evergarden_Movie.jpg
|
||||
- word: 'Monogatari Series: Second Season'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Monogatari_Series_Second_Season.jpg
|
||||
- word: Monster
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Monster.jpg
|
||||
- word: 'Shouwa Genroku Rakugo Shinjuu: Sukeroku Futatabi-hen'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Shouwa_Genroku_Rakugo_Shinjuu_Sukeroku_Futatabi-hen.jpg
|
||||
- word: Cowboy Bebop
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Cowboy_Bebop.jpg
|
||||
- word: Jujutsu Kaisen (TV)
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Jujutsu_Kaisen_TV.jpg
|
||||
- word: 'Kimetsu no Yaiba Movie: Mugen Ressha-hen'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Kimetsu_no_Yaiba_Movie_Mugen_Ressha-hen.jpg
|
||||
- word: Mushishi Zoku Shou 2nd Season
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Mushishi_Zoku_Shou_2nd_Season.jpg
|
||||
- word: Hajime no Ippo
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Hajime_no_Ippo.jpg
|
||||
- word: Made in Abyss
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Made_in_Abyss.jpg
|
||||
- word: 'Made in Abyss Movie 3: Fukaki Tamashii no Reimei'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Made_in_Abyss_Movie_3_Fukaki_Tamashii_no_Reimei.jpg
|
||||
- word: Mushishi Zoku Shou
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Mushishi_Zoku_Shou.jpg
|
||||
- word: 'Rurouni Kenshin: Meiji Kenkaku Romantan - Tsuioku-hen'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Rurouni_Kenshin_Meiji_Kenkaku_Romantan_-_Tsuioku-hen.jpg
|
||||
- word: Shigatsu wa Kimi no Uso
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Shigatsu_wa_Kimi_no_Uso.jpg
|
||||
- word: Vinland Saga
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Vinland_Saga.jpg
|
||||
- word: 'Code Geass: Hangyaku no Lelouch'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Code_Geass_Hangyaku_no_Lelouch.jpg
|
||||
- word: Great Teacher Onizuka
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Great_Teacher_Onizuka.jpg
|
||||
- word: Mononoke Hime
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Mononoke_Hime.jpg
|
||||
- word: Mushishi
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Mushishi.jpg
|
||||
- word: Haikyuu!! Second Season
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Haikyuu_Second_Season.jpg
|
||||
- word: 'Kaguya-sama wa Kokurasetai?: Tensai-tachi no Renai Zunousen'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Kaguya-sama_wa_Kokurasetai_Tensai-tachi_no_Renai_Zunousen.jpg
|
||||
- word: 'Hajime no Ippo: New Challenger'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Hajime_no_Ippo_New_Challenger.jpg
|
||||
- word: Howl no Ugoku Shiro
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Howl_no_Ugoku_Shiro.jpg
|
||||
- word: Natsume Yuujinchou Shi
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Natsume_Yuujinchou_Shi.jpg
|
||||
- word: Seishun Buta Yarou wa Yumemiru Shoujo no Yume wo Minai
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Seishun_Buta_Yarou_wa_Yumemiru_Shoujo_no_Yume_wo_Minai.jpg
|
||||
- word: Tengen Toppa Gurren Lagann
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Tengen_Toppa_Gurren_Lagann.jpg
|
||||
- word: Violet Evergarden
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Violet_Evergarden.jpg
|
||||
- word: Natsume Yuujinchou Roku
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Natsume_Yuujinchou_Roku.jpg
|
||||
- word: Suzumiya Haruhi no Shoushitsu
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Suzumiya_Haruhi_no_Shoushitsu.jpg
|
||||
- word: Death Note
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Death_Note.jpg
|
||||
- word: Fumetsu no Anata e
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Fumetsu_no_Anata_e.jpg
|
||||
- word: 'Mushishi Zoku Shou: Suzu no Shizuku'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Mushishi_Zoku_Shou_Suzu_no_Shizuku.jpg
|
||||
- word: Ookami Kodomo no Ame to Yuki
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Ookami_Kodomo_no_Ame_to_Yuki.jpg
|
||||
- word: Ping Pong the Animation
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Ping_Pong_the_Animation.jpg
|
||||
- word: Yakusoku no Neverland
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Yakusoku_no_Neverland.jpg
|
||||
- word: 'Kizumonogatari II: Nekketsu-hen'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Kizumonogatari_II_Nekketsu-hen.jpg
|
||||
- word: Yojouhan Shinwa Taikei
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Yojouhan_Shinwa_Taikei.jpg
|
||||
- word: Natsume Yuujinchou San
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Natsume_Yuujinchou_San.jpg
|
||||
- word: Shouwa Genroku Rakugo Shinjuu
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Shouwa_Genroku_Rakugo_Shinjuu.jpg
|
||||
- word: 'Hajime no Ippo: Rising'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Hajime_no_Ippo_Rising.jpg
|
||||
- word: Kimetsu no Yaiba
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Kimetsu_no_Yaiba.jpg
|
||||
- word: Kimi no Suizou wo Tabetai
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Kimi_no_Suizou_wo_Tabetai.jpg
|
||||
- word: Natsume Yuujinchou Go
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Natsume_Yuujinchou_Go.jpg
|
||||
- word: Re:Zero kara Hajimeru Isekai Seikatsu 2nd Season Part 2
|
||||
imageUrl: https://cdn.nadeko.bot/animu/ReZero_kara_Hajimeru_Isekai_Seikatsu_2nd_Season_Part_2.jpg
|
||||
- word: 'Mushishi: Hihamukage'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Mushishi_Hihamukage.jpg
|
||||
- word: Bakuman. 3rd Season
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Bakuman._3rd_Season.jpg
|
||||
- word: 'Kara no Kyoukai 5: Mujun Rasen'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Kara_no_Kyoukai_5_Mujun_Rasen.jpg
|
||||
- word: Sora yori mo Tooi Basho
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Sora_yori_mo_Tooi_Basho.jpg
|
||||
- word: Zoku Natsume Yuujinchou
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Zoku_Natsume_Yuujinchou.jpg
|
||||
- word: One Piece
|
||||
imageUrl: https://cdn.nadeko.bot/animu/One_Piece.jpg
|
||||
- word: Yuru Camp△ Season 2
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Yuru_Camp_Season_2.jpg
|
||||
- word: Fruits Basket 2nd Season
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Fruits_Basket_2nd_Season.jpg
|
||||
- word: 'Haikyuu!!: To the Top 2nd Season'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Haikyuu_To_the_Top_2nd_Season.jpg
|
||||
- word: 'Koukaku Kidoutai: Stand Alone Complex 2nd GIG'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Koukaku_Kidoutai_Stand_Alone_Complex_2nd_GIG.jpg
|
||||
- word: One Punch Man
|
||||
imageUrl: https://cdn.nadeko.bot/animu/One_Punch_Man.jpg
|
||||
- word: 'Neon Genesis Evangelion: The End of Evangelion'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Neon_Genesis_Evangelion_The_End_of_Evangelion.jpg
|
||||
- word: Ansatsu Kyoushitsu 2nd Season
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Ansatsu_Kyoushitsu_2nd_Season.jpg
|
||||
- word: Slam Dunk
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Slam_Dunk.jpg
|
||||
- word: "Vivy: Fluorite Eye's Song"
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Vivy_Fluorite_Eyes_Song.jpg
|
||||
- word: 'Rainbow: Nisha Rokubou no Shichinin'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Rainbow_Nisha_Rokubou_no_Shichinin.jpg
|
||||
- word: Shingeki no Kyojin
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Shingeki_no_Kyojin.jpg
|
||||
- word: Uchuu Kyoudai
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Uchuu_Kyoudai.jpg
|
||||
- word: Aria the Origination
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Aria_the_Origination.jpg
|
||||
- word: Holo no Graffiti
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Holo_no_Graffiti.jpg
|
||||
- word: Hotaru no Haka
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Hotaru_no_Haka.jpg
|
||||
- word: Banana Fish
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Banana_Fish.jpg
|
||||
- word: Chihayafuru 3
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Chihayafuru_3.jpg
|
||||
- word: Kenpuu Denki Berserk
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Kenpuu_Denki_Berserk.jpg
|
||||
- word: Perfect Blue
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Perfect_Blue.jpg
|
||||
- word: Samurai Champloo
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Samurai_Champloo.jpg
|
||||
- word: Haikyuu!!
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Haikyuu.jpg
|
||||
- word: Mo Dao Zu Shi
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Mo_Dao_Zu_Shi.jpg
|
||||
- word: Mob Psycho 100
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Mob_Psycho_100.jpg
|
||||
- word: Zoku Owarimonogatari
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Zoku_Owarimonogatari.jpg
|
||||
- word: Nana
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Nana.jpg
|
||||
- word: Nichijou
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Nichijou.jpg
|
||||
- word: Saenai Heroine no Sodatekata Fine
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Saenai_Heroine_no_Sodatekata_Fine.jpg
|
||||
- word: 'Mushishi Zoku Shou: Odoro no Michi'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Mushishi_Zoku_Shou_Odoro_no_Michi.jpg
|
||||
- word: Owarimonogatari
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Owarimonogatari.jpg
|
||||
- word: Saiki Kusuo no Ψ-nan 2
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Saiki_Kusuo_no_-nan_2.jpg
|
||||
- word: Yuu☆Yuu☆Hakusho
|
||||
imageUrl: https://cdn.nadeko.bot/animu/YuuYuuHakusho.jpg
|
||||
- word: Golden Kamuy 3rd Season
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Golden_Kamuy_3rd_Season.jpg
|
||||
- word: 'Koukaku Kidoutai: Stand Alone Complex'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Koukaku_Kidoutai_Stand_Alone_Complex.jpg
|
||||
- word: Mo Dao Zu Shi 2nd Season
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Mo_Dao_Zu_Shi_2nd_Season.jpg
|
||||
- word: Re:Zero kara Hajimeru Isekai Seikatsu 2nd Season
|
||||
imageUrl: https://cdn.nadeko.bot/animu/ReZero_kara_Hajimeru_Isekai_Seikatsu_2nd_Season.jpg
|
||||
- word: Sayonara no Asa ni Yakusoku no Hana wo Kazarou
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Sayonara_no_Asa_ni_Yakusoku_no_Hana_wo_Kazarou.jpg
|
||||
- word: Mononoke
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Mononoke.jpg
|
||||
- word: Saiki Kusuo no Ψ-nan
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Saiki_Kusuo_no_-nan.jpg
|
||||
- word: Gotcha!
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Gotcha.jpg
|
||||
- word: 'Kara no Kyoukai 7: Satsujin Kousatsu (Go)'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Kara_no_Kyoukai_7_Satsujin_Kousatsu_Go.jpg
|
||||
- word: Kaze ga Tsuyoku Fuiteiru
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Kaze_ga_Tsuyoku_Fuiteiru.jpg
|
||||
- word: 3-gatsu no Lion
|
||||
imageUrl: https://cdn.nadeko.bot/animu/3-gatsu_no_Lion.jpg
|
||||
- word: Cross Game
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Cross_Game.jpg
|
||||
- word: Josee to Tora to Sakana-tachi
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Josee_to_Tora_to_Sakana-tachi.jpg
|
||||
- word: Kono Oto Tomare! 2nd Season
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Kono_Oto_Tomare_2nd_Season.jpg
|
||||
- word: 'Natsume Yuujinchou Movie: Utsusemi ni Musubu'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Natsume_Yuujinchou_Movie_Utsusemi_ni_Musubu.jpg
|
||||
- word: Yahari Ore no Seishun Love Comedy wa Machigatteiru. Kan
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Yahari_Ore_no_Seishun_Love_Comedy_wa_Machigatteiru._Kan.jpg
|
||||
- word: Non Non Biyori Nonstop
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Non_Non_Biyori_Nonstop.jpg
|
||||
- word: Usagi Drop
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Usagi_Drop.jpg
|
||||
- word: Baccano!
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Baccano.jpg
|
||||
- word: Chihayafuru 2
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Chihayafuru_2.jpg
|
||||
- word: 'Douluo Dalu: Xiaowu Juebie'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Douluo_Dalu_Xiaowu_Juebie.jpg
|
||||
- word: Grand Blue
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Grand_Blue.jpg
|
||||
- word: Houseki no Kuni (TV)
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Houseki_no_Kuni_TV.jpg
|
||||
- word: Hunter x Hunter
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Hunter_x_Hunter.jpg
|
||||
- word: 'Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Kaguya-sama_wa_Kokurasetai_Tensai-tachi_no_Renai_Zunousen.jpg
|
||||
- word: Barakamon
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Barakamon.jpg
|
||||
- word: 'Kizumonogatari I: Tekketsu-hen'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Kizumonogatari_I_Tekketsu-hen.jpg
|
||||
- word: 'Mushoku Tensei: Isekai Ittara Honki Dasu'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Mushoku_Tensei_Isekai_Ittara_Honki_Dasu.jpg
|
||||
- word: Natsume Yuujinchou Roku Specials
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Natsume_Yuujinchou_Roku_Specials.jpg
|
||||
- word: 'Violet Evergarden Gaiden: Eien to Jidou Shuki Ningyou'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Violet_Evergarden_Gaiden_Eien_to_Jidou_Shuki_Ningyou.jpg
|
||||
- word: Shiguang Daili Ren
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Shiguang_Daili_Ren.jpg
|
||||
- word: Tensei shitara Slime Datta Ken 2nd Season
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Tensei_shitara_Slime_Datta_Ken_2nd_Season.jpg
|
||||
- word: Ano Hi Mita Hana no Namae wo Bokutachi wa Mada Shiranai.
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Ano_Hi_Mita_Hana_no_Namae_wo_Bokutachi_wa_Mada_Shiranai..jpg
|
||||
- word: 'Cowboy Bebop: Tengoku no Tobira'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Cowboy_Bebop_Tengoku_no_Tobira.jpg
|
||||
- word: Hellsing Ultimate
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Hellsing_Ultimate.jpg
|
||||
- word: Kaze no Tani no Nausica
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Kaze_no_Tani_no_Nausica.jpg
|
||||
- word: Luo Xiao Hei Zhan Ji (Movie)
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Luo_Xiao_Hei_Zhan_Ji_Movie.jpg
|
||||
- word: Bakuman. 2nd Season
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Bakuman._2nd_Season.jpg
|
||||
- word: 'Kiseijuu: Sei no Kakuritsu'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Kiseijuu_Sei_no_Kakuritsu.jpg
|
||||
- word: 'Kamisama Hajimemashita: Kako-hen'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Kamisama_Hajimemashita_Kako-hen.jpg
|
||||
- word: Kingdom 2nd Season
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Kingdom_2nd_Season.jpg
|
||||
- word: Kingdom 3rd Season
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Kingdom_3rd_Season.jpg
|
||||
- word: Mahou Shoujo Madoka Magica
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Mahou_Shoujo_MadokaMagica.jpg
|
||||
- word: Psycho-Pass
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Psycho-Pass.jpg
|
||||
- word: Tenki no Ko
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Tenki_no_Ko.jpg
|
||||
- word: Heaven Official's Blessing
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Tian_Guan_Ci_Fu.jpg
|
||||
- word: Uchuu Senkan Yamato 2199
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Uchuu_Senkan_Yamato_2199.jpg
|
||||
- word: 'Haikyuu!!: To the Top'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Haikyuu_To_the_Top.jpg
|
||||
- word: Bakemonogatari
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Bakemonogatari.jpg
|
||||
- word: Given
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Given.jpg
|
||||
- word: Hotarubi no Mori e
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Hotarubi_no_Mori_e.jpg
|
||||
- word: Katanagatari
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Katanagatari.jpg
|
||||
- word: 'Natsume Yuujinchou: Itsuka Yuki no Hi ni'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Natsume_Yuujinchou_Itsuka_Yuki_no_Hi_ni.jpg
|
||||
- word: One Outs
|
||||
imageUrl: https://cdn.nadeko.bot/animu/One_Outs.jpg
|
||||
- word: Ookami to Koushinryou II
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Ookami_to_Koushinryou_II.jpg
|
||||
- word: Romeo no Aoi Sora
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Romeo_no_Aoi_Sora.jpg
|
||||
- word: Sakamichi no Apollon
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Sakamichi_no_Apollon.jpg
|
||||
- word: Seishun Buta Yarou wa Bunny Girl Senpai no Yume wo Minai
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Seishun_Buta_Yarou_wa_Bunny_Girl_Senpai_no_Yume_wo_Minai.jpg
|
||||
- word: Boku dake ga Inai Machi
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Boku_dake_ga_Inai_Machi.jpg
|
||||
- word: 'Evangelion: 2.0 You Can (Not) Advance'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Evangelion_2.0_You_Can_Not_Advance.jpg
|
||||
- word: Kemono no Souja Erin
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Kemono_no_Souja_Erin.jpg
|
||||
- word: 'Made in Abyss Movie 2: Hourou Suru Tasogare'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Made_in_Abyss_Movie_2_Hourou_Suru_Tasogare.jpg
|
||||
- word: 'Major: World Series'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Major_World_Series.jpg
|
||||
- word: Doukyuusei (Movie)
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Doukyuusei_Movie.jpg
|
||||
- word: K-On! Movie
|
||||
imageUrl: https://cdn.nadeko.bot/animu/K-On_Movie.jpg
|
||||
- word: Natsume Yuujinchou
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Natsume_Yuujinchou.jpg
|
||||
- word: Natsume Yuujinchou Go Specials
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Natsume_Yuujinchou_Go_Specials.jpg
|
||||
- word: NHK ni Youkoso!
|
||||
imageUrl: https://cdn.nadeko.bot/animu/NHK_ni_Youkoso.jpg
|
||||
- word: Shelter
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Shelter.jpg
|
||||
- word: Shinsekai yori
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Shinsekai_yori.jpg
|
||||
- word: Shirobako
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Shirobako.jpg
|
||||
- word: Versailles no Bara
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Versailles_no_Bara.jpg
|
||||
- word: Neon Genesis Evangelion
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Neon_Genesis_Evangelion.jpg
|
||||
- word: Dr. Stone
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Dr._Stone.jpg
|
||||
- word: Fate/Zero
|
||||
imageUrl: https://cdn.nadeko.bot/animu/FateZero.jpg
|
||||
- word: Great Pretender
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Great_Pretender.jpg
|
||||
- word: 'Hunter x Hunter: Original Video Animation'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Hunter_x_Hunter_Original_Video_Animation.jpg
|
||||
- word: 'Kino no Tabi: The Beautiful World'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Kino_no_Tabi_The_Beautiful_World.jpg
|
||||
- word: Kuroko no Basket 3rd Season
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Kuroko_no_Basket_3rd_Season.jpg
|
||||
- word: Bakemono no Ko
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Bakemono_no_Ko.jpg
|
||||
- word: Beck
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Beck.jpg
|
||||
- word: 'Diamond no Ace: Second Season'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Diamond_no_Ace_Second_Season.jpg
|
||||
- word: Nodame Cantabile
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Nodame_Cantabile.jpg
|
||||
- word: 'Rurouni Kenshin: Meiji Kenkaku Romantan'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Rurouni_Kenshin_Meiji_Kenkaku_Romantan.jpg
|
||||
- word: 'Tsubasa: Tokyo Revelations'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Tsubasa_Tokyo_Revelations.jpg
|
||||
- word: 'Violet Evergarden: Kitto "Ai" wo Shiru Hi ga Kuru no Darou'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Violet_Evergarden_Kitto_Ai_wo_Shiru_Hi_ga_Kuru_no_Darou.jpg
|
||||
- word: Planetes
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Planetes.jpg
|
||||
- word: 'Stranger: Mukou Hadan'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Stranger_Mukou_Hadan.jpg
|
||||
- word: Yuukoku no Moriarty 2nd Season
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Yuukoku_no_Moriarty_2nd_Season.jpg
|
||||
- word: Gin no Saji 2nd Season
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Gin_no_Saji_2nd_Season.jpg
|
||||
- word: Hibike! Euphonium 2
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Hibike_Euphonium_2.jpg
|
||||
- word: Initial D First Stage
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Initial_D_First_Stage.jpg
|
||||
- word: Kawaki wo Ameku
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Kawaki_wo_Ameku.jpg
|
||||
- word: Koukaku Kidoutai
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Koukaku_Kidoutai.jpg
|
||||
- word: Redline
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Redline.jpg
|
||||
- word: Tenkuu no Shiro Laputa
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Tenkuu_no_Shiro_Laputa.jpg
|
||||
- word: Tokyo Godfathers
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Tokyo_Godfathers.jpg
|
||||
- word: Tonari no Totoro
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Tonari_no_Totoro.jpg
|
||||
- word: 'No Game No Life: Zero'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/No_Game_No_Life_Zero.jpg
|
||||
- word: 'Nomad: Megalo Box 2'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Nomad_Megalo_Box_2.jpg
|
||||
- word: Quanzhi Gaoshou Specials
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Quanzhi_Gaoshou_Specials.jpg
|
||||
- word: Ashita no Joe
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Ashita_no_Joe.jpg
|
||||
- word: 'Douluo Dalu: Xingdou Xian Ji Pian'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Douluo_Dalu_Xingdou_Xian_Ji_Pian.jpg
|
||||
- word: 'Gyakkyou Burai Kaiji: Ultimate Survivor'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Gyakkyou_Burai_Kaiji_Ultimate_Survivor.jpg
|
||||
- word: 'Hajime no Ippo: Champion Road'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Hajime_no_Ippo_Champion_Road.jpg
|
||||
- word: 'Hunter x Hunter: Greed Island Final'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Hunter_x_Hunter_Greed_Island_Final.jpg
|
||||
- word: Re:Zero kara Hajimeru Isekai Seikatsu
|
||||
imageUrl: https://cdn.nadeko.bot/animu/ReZero_kara_Hajimeru_Isekai_Seikatsu.jpg
|
||||
- word: Sennen Joyuu
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Sennen_Joyuu.jpg
|
||||
- word: Stand By Me Doraemon 2
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Stand_By_Me_Doraemon_2.jpg
|
||||
- word: Yuru Camp
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Yuru_Camp.jpg
|
||||
- word: 'Nodame Cantabile: Finale'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Nodame_Cantabile_Finale.jpg
|
||||
- word: Ookami to Koushinryou
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Ookami_to_Koushinryou.jpg
|
||||
- word: Space Dandy 2nd Season
|
||||
imageUrl: https://cdn.nadeko.bot/animu/SpaceDandy_2nd_Season.jpg
|
||||
- word: Youjo Senki Movie
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Youjo_Senki_Movie.jpg
|
||||
- word: Boku no Hero Academia 2nd Season
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Boku_no_Hero_Academia_2nd_Season.jpg
|
||||
- word: Danshi Koukousei no Nichijou
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Danshi_Koukousei_no_Nichijou.jpg
|
||||
- word: Kuroko no Basket 2nd Season
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Kuroko_no_Basket_2nd_Season.jpg
|
||||
- word: 'Magi: The Kingdom of Magic'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Magi_The_Kingdom_of_Magic.jpg
|
||||
- word: 'Douluo Dalu: Hanhai Qian Kun'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Douluo_Dalu_Hanhai_Qian_Kun.jpg
|
||||
- word: 'Gyakkyou Burai Kaiji: Hakairoku-hen'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Gyakkyou_Burai_Kaiji_Hakairoku-hen.jpg
|
||||
- word: Hachimitsu to Clover II
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Hachimitsu_to_Clover_II.jpg
|
||||
- word: Horimiya
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Horimiya.jpg
|
||||
- word: 'Kuroshitsuji Movie: Book of the Atlantic'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Kuroshitsuji_Movie_Book_of_the_Atlantic.jpg
|
||||
- word: 'Non Non Biyori Movie: Vacation'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Non_Non_Biyori_Movie_Vacation.jpg
|
||||
- word: Wu Liuqi Zhi Zui Qiang Fa Xing Shi
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Wu_Liuqi_Zhi_Zui_Qiang_Fa_Xing_Shi.jpg
|
||||
- word: Yahari Ore no Seishun Love Comedy wa Machigatteiru. Zoku
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Yahari_Ore_no_Seishun_Love_Comedy_wa_Machigatteiru._Zoku.jpg
|
||||
- word: Shokugeki no Souma
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Shokugeki_no_Souma.jpg
|
||||
- word: SKET Dance
|
||||
imageUrl: https://cdn.nadeko.bot/animu/SKET_Dance.jpg
|
||||
- word: Wu Liuqi Zhi Xuanwu Guo Pian
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Wu_Liuqi_Zhi_Xuanwu_Guo_Pian.jpg
|
||||
- word: xxxHOLiC Kei
|
||||
imageUrl: https://cdn.nadeko.bot/animu/xxxHOLiC_Kei.jpg
|
||||
- word: Initial D Final Stage
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Initial_D_Final_Stage.jpg
|
||||
- word: 'Diamond no Ace: Act II'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Diamond_no_Ace_Act_II.jpg
|
||||
- word: 'Hajime no Ippo: Mashiba vs. Kimura'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Hajime_no_Ippo_Mashiba_vs._Kimura.jpg
|
||||
- word: Kono Sekai no Katasumi ni
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Kono_Sekai_no_Katasumi_ni.jpg
|
||||
- word: Majo no Takkyuubin
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Majo_no_Takkyuubin.jpg
|
||||
- word: Mimi wo Sumaseba
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Mimi_wo_Sumaseba.jpg
|
||||
- word: Trigun
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Trigun.jpg
|
||||
- word: 'ReLIFE: Kanketsu-hen'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/ReLIFE_Kanketsu-hen.jpg
|
||||
- word: Toaru Kagaku no Railgun T
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Toaru_Kagaku_no_Railgun_T.jpg
|
||||
- word: xxxHOLiC Rou
|
||||
imageUrl: https://cdn.nadeko.bot/animu/xxxHOLiC_Rou.jpg
|
||||
- word: Yoru wa Mijikashi Arukeyo Otome
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Yoru_wa_Mijikashi_Arukeyo_Otome.jpg
|
||||
- word: Bakuman.
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Bakuman..jpg
|
||||
- word: 'Cardcaptor Sakura Movie 2: Fuuin Sareta Card'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Cardcaptor_Sakura_Movie_2_Fuuin_Sareta_Card.jpg
|
||||
- word: Chihayafuru
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Chihayafuru.jpg
|
||||
- word: 'Douluo Dalu: Qian Hua Xi Jin'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Douluo_Dalu_Qian_Hua_Xi_Jin.jpg
|
||||
- word: 'Ginga Eiyuu Densetsu: Die Neue These - Seiran 3'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Ginga_Eiyuu_Densetsu_Die_Neue_These_-_Seiran_3.jpg
|
||||
- word: Kaguya-hime no Monogatari
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Kaguya-hime_no_Monogatari.jpg
|
||||
- word: 'Little Busters!: Refrain'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Little_Busters_Refrain.jpg
|
||||
- word: Dororo
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Dororo.jpg
|
||||
- word: 'Dr. Stone: Stone Wars'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Dr._Stone_Stone_Wars.jpg
|
||||
- word: 'Fate/stay night: Unlimited Blade Works'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Fatestay_night_Unlimited_Blade_Works.jpg
|
||||
- word: Girls & Panzer Movie
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Girls__Panzer_Movie.jpg
|
||||
- word: Golden Kamuy 2nd Season
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Golden_Kamuy_2nd_Season.jpg
|
||||
- word: Higurashi no Naku Koro ni Kai
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Higurashi_no_Naku_Koro_ni_Kai.jpg
|
||||
- word: 'InuYasha: Kanketsu-hen'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/InuYasha_Kanketsu-hen.jpg
|
||||
- word: 'Saiki Kusuo no Ψ-nan: Kanketsu-hen'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Saiki_Kusuo_no_-nan_Kanketsu-hen.jpg
|
||||
- word: 'One Piece Movie 14: Stampede'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/One_Piece_Movie_14_Stampede.jpg
|
||||
- word: 'One Piece: Episode of Merry - Mou Hitori no Nakama no Monogatari'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/One_Piece_Episode_of_Merry_-_Mou_Hitori_no_Nakama_no_Monogatari.jpg
|
||||
- word: Shoujo Kakumei Utena
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Shoujo_Kakumei_Utena.jpg
|
||||
- word: Ballroom e Youkoso
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Ballroom_e_Youkoso.jpg
|
||||
- word: 'Berserk: Ougon Jidai-hen III - Kourin'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Berserk_Ougon_Jidai-hen_III_-_Kourin.jpg
|
||||
- word: Bungou Stray Dogs 2nd Season
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Bungou_Stray_Dogs_2nd_Season.jpg
|
||||
- word: 'Douluo Dalu: Haishen Zhi Guang'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Douluo_Dalu_Haishen_Zhi_Guang.jpg
|
||||
- word: Fruits Basket 1st Season
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Fruits_Basket_1st_Season.jpg
|
||||
- word: 'Hunter x Hunter: Greed Island'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Hunter_x_Hunter_Greed_Island.jpg
|
||||
- word: Liz to Aoi Tori
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Liz_to_Aoi_Tori.jpg
|
||||
- word: Aria the Natural
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Aria_the_Natural.jpg
|
||||
- word: Asobi Asobase
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Asobi_Asobase.jpg
|
||||
- word: 'Black Lagoon: The Second Barrage'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Black_Lagoon_The_Second_Barrage.jpg
|
||||
- word: Bungou Stray Dogs 3rd Season
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Bungou_Stray_Dogs_3rd_Season.jpg
|
||||
- word: Death Parade
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Death_Parade.jpg
|
||||
- word: 'Digimon Adventure: Last Evolution Kizuna'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Digimon_Adventure_Last_Evolution_Kizuna.jpg
|
||||
- word: Hinamatsuri (TV)
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Hinamatsuri_TV.jpg
|
||||
- word: "Kyoukai no Kanata Movie 2: I'll Be Here - Mirai-hen"
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Kyoukai_no_Kanata_Movie_2_Ill_Be_Here_-_Mirai-hen.jpg
|
||||
- word: Maison Ikkoku
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Maison_Ikkoku.jpg
|
||||
- word: 'Naruto: Shippuuden'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Naruto_Shippuuden.jpg
|
||||
- word: Non Non Biyori Repeat
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Non_Non_Biyori_Repeat.jpg
|
||||
- word: Noragami Aragoto
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Noragami_Aragoto.jpg
|
||||
- word: Ouran Koukou Host Club
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Ouran_Koukou_Host_Club.jpg
|
||||
- word: Senki Zesshou Symphogear XV
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Senki_Zesshou_Symphogear_XV.jpg
|
||||
- word: Shoujo Shuumatsu Ryokou
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Shoujo_Shuumatsu_Ryokou.jpg
|
||||
- word: Toradora!
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Toradora.jpg
|
||||
- word: 'Working!!!: Lord of the Takanashi'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Working_Lord_of_the_Takanashi.jpg
|
||||
- word: Boku no Hero Academia 3rd Season
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Boku_no_Hero_Academia_3rd_Season.jpg
|
||||
- word: 'Douluo Dalu: Jingying Sai'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Douluo_Dalu_Jingying_Sai.jpg
|
||||
- word: 5-toubun no Hanayome ∬
|
||||
imageUrl: https://cdn.nadeko.bot/animu/5-toubun_no_Hanayome_.jpg
|
||||
- word: Akira
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Akira.jpg
|
||||
- word: Gankutsuou
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Gankutsuou.jpg
|
||||
- word: Kamisama Hajimemashita◎
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Kamisama_Hajimemashita.jpg
|
||||
- word: 'Lupin III: Part 5'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Lupin_III_Part_5.jpg
|
||||
- word: Mo Dao Zu Shi Q
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Mo_Dao_Zu_Shi_Q.jpg
|
||||
- word: Nisemonogatari
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Nisemonogatari.jpg
|
||||
- word: 'One Piece Film: Z'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/One_Piece_Film_Z.jpg
|
||||
- word: Quanzhi Gaoshou Zhi Dianfeng Rongyao
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Quanzhi_Gaoshou_Zhi_Dianfeng_Rongyao.jpg
|
||||
- word: Toki wo Kakeru Shoujo
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Toki_wo_Kakeru_Shoujo.jpg
|
||||
- word: No Game No Life
|
||||
imageUrl: https://cdn.nadeko.bot/animu/No_Game_No_Life.jpg
|
||||
- word: 'Nodame Cantabile: Paris-hen'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Nodame_Cantabile_Paris-hen.jpg
|
||||
- word: Sakura-sou no Pet na Kanojo
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Sakura-sou_no_Pet_na_Kanojo.jpg
|
||||
- word: Seirei no Moribito
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Seirei_no_Moribito.jpg
|
||||
- word: 'Shokugeki no Souma: Ni no Sara'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Shokugeki_no_Souma_Ni_no_Sara.jpg
|
||||
- word: Cardcaptor Sakura
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Cardcaptor_Sakura.jpg
|
||||
- word: Detective Conan
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Detective_Conan.jpg
|
||||
- word: Durarara!!
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Durarara.jpg
|
||||
- word: Eizouken ni wa Te wo Dasu na!
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Eizouken_ni_wa_Te_wo_Dasu_na.jpg
|
||||
- word: Fate/Grand Carnival
|
||||
imageUrl: https://cdn.nadeko.bot/animu/FateGrand_Carnival.jpg
|
||||
- word: Kaiba
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Kaiba.jpg
|
||||
- word: Katekyo Hitman Reborn!
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Katekyo_Hitman_Reborn.jpg
|
||||
- word: "Mahou Shoujo Lyrical Nanoha: The Movie 2nd A's"
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Mahou_Shoujo_Lyrical_Nanoha_The_Movie_2nd_As.jpg
|
||||
- word: Dragon Ball Z
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Dragon_Ball_Z.jpg
|
||||
- word: Fullmetal Alchemist
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Fullmetal_Alchemist.jpg
|
||||
- word: Ginga Eiyuu Densetsu Gaiden
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Ginga_Eiyuu_Densetsu_Gaiden.jpg
|
||||
- word: Given Movie
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Given_Movie.jpg
|
||||
- word: K-On!!
|
||||
imageUrl: https://cdn.nadeko.bot/animu/K-On.jpg
|
||||
- word: 'Lupin III: Cagliostro no Shiro'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Lupin_III_Cagliostro_no_Shiro.jpg
|
||||
- word: 'One Piece Film: Strong World'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/One_Piece_Film_Strong_World.jpg
|
||||
- word: Tanoshii Muumin Ikka
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Tanoshii_Muumin_Ikka.jpg
|
||||
- word: 'One Piece: Episode of Nami - Koukaishi no Namida to Nakama no Kizuna'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/One_Piece_Episode_of_Nami_-_Koukaishi_no_Namida_to_Nakama_no_Kizuna.jpg
|
||||
- word: Princess Tutu
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Princess_Tutu.jpg
|
||||
- word: Tokyo Revengers
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Tokyo_Revengers.jpg
|
||||
- word: Tsuki ga Kirei
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Tsuki_ga_Kirei.jpg
|
||||
- word: 'Chuunibyou demo Koi ga Shitai! Movie: Take On Me'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Chuunibyou_demo_Koi_ga_Shitai_Movie_Take_On_Me.jpg
|
||||
- word: 'Douluo Dalu: Hao Tian Yang Wei'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Douluo_Dalu_Hao_Tian_Yang_Wei.jpg
|
||||
- word: 'Honzuki no Gekokujou: Shisho ni Naru Tame ni wa Shudan wo Erandeiraremasen 2nd Season'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Honzuki_no_Gekokujou_Shisho_ni_Naru_Tame_ni_wa_Shudan_wo_Erandeiraremasen_2nd_Season.jpg
|
||||
- word: Initial D Fourth Stage
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Initial_D_Fourth_Stage.jpg
|
||||
- word: 'Interstella5555: The 5tory of The 5ecret 5tar 5ystem'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Interstella5555_The_5tory_of_The_5ecret_5tar_5ystem.jpg
|
||||
- word: Kono Subarashii Sekai ni Shukufuku wo!
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Kono_Subarashii_Sekai_ni_Shukufuku_wo.jpg
|
||||
- word: 'Made in Abyss Movie 1: Tabidachi no Yoake'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Made_in_Abyss_Movie_1_Tabidachi_no_Yoake.jpg
|
||||
- word: Baccano! Specials
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Baccano_Specials.jpg
|
||||
- word: Detroit Metal City
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Detroit_Metal_City.jpg
|
||||
- word: Hyouka
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Hyouka.jpg
|
||||
- word: Kanata no Astra
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Kanata_no_Astra.jpg
|
||||
- word: 'Koukaku Kidoutai: Stand Alone Complex - Solid State Society'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Koukaku_Kidoutai_Stand_Alone_Complex_-_Solid_State_Society.jpg
|
||||
- word: Kuragehime
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Kuragehime.jpg
|
||||
- word: 'Mahoutsukai no Yome: Hoshi Matsu Hito'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Mahoutsukai_no_Yome_Hoshi_Matsu_Hito.jpg
|
||||
- word: Mobile Suit Gundam 00
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Mobile_Suit_Gundam_00.jpg
|
||||
- word: Tsukimonogatari
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Tsukimonogatari.jpg
|
||||
- word: Uchouten Kazoku 2
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Uchouten_Kazoku_2.jpg
|
||||
- word: Pui Pui Molcar
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Pui_Pui_Molcar.jpg
|
||||
- word: 'Saiki Kusuo no Ψ-nan: Ψ-shidou-hen'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Saiki_Kusuo_no_-nan_-shidou-hen.jpg
|
||||
- word: 'Tsubasa: Shunraiki'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Tsubasa_Shunraiki.jpg
|
||||
- word: Zankyou no Terror
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Zankyou_no_Terror.jpg
|
||||
- word: Angel Beats!
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Angel_Beats.jpg
|
||||
- word: 'Ginga Eiyuu Densetsu: Arata Naru Tatakai no Overture'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Ginga_Eiyuu_Densetsu_Arata_Naru_Tatakai_no_Overture.jpg
|
||||
- word: 'IDOLiSH7: Second Beat!'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/IDOLiSH7_Second_Beat.jpg
|
||||
- word: Initial D Second Stage
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Initial_D_Second_Stage.jpg
|
||||
- word: Kuroko no Basket
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Kuroko_no_Basket.jpg
|
||||
- word: Ansatsu Kyoushitsu
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Ansatsu_Kyoushitsu.jpg
|
||||
- word: Diamond no Ace
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Diamond_no_Ace.jpg
|
||||
- word: 'Dragon Ball Super: Broly'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Dragon_Ball_Super_Broly.jpg
|
||||
- word: 'Haikyuu!! Movie 4: Concept no Tatakai'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Haikyuu_Movie_4_Concept_no_Tatakai.jpg
|
||||
- word: Karakai Jouzu no Takagi-san 2
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Karakai_Jouzu_no_Takagi-san_2.jpg
|
||||
- word: Kaze Tachinu
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Kaze_Tachinu.jpg
|
||||
- word: Skip Beat!
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Skip_Beat.jpg
|
||||
- word: 'Saint Seiya: The Lost Canvas - Meiou Shinwa 2'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Saint_Seiya_The_Lost_Canvas_-_Meiou_Shinwa_2.jpg
|
||||
- word: 'Tamayura: Sotsugyou Shashin Part 4 - Ashita'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Tamayura_Sotsugyou_Shashin_Part_4_-_Ashita.jpg
|
||||
- word: Wonder Egg Priority
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Wonder_Egg_Priority.jpg
|
||||
- word: World Trigger 2nd Season
|
||||
imageUrl: https://cdn.nadeko.bot/animu/World_Trigger_2nd_Season.jpg
|
||||
- word: 'Yowamushi Pedal: Grande Road'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Yowamushi_Pedal_Grande_Road.jpg
|
||||
- word: 'Darker than Black: Kuro no Keiyakusha'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Darker_than_Black_Kuro_no_Keiyakusha.jpg
|
||||
- word: 'Evangelion: 3.0+1.0 Thrice Upon a Time'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Evangelion_3.01.0_Thrice_Upon_a_Time.jpg
|
||||
- word: Gin no Saji
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Gin_no_Saji.jpg
|
||||
- word: 'Hajime no Ippo: Boxer no Kobushi'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Hajime_no_Ippo_Boxer_no_Kobushi.jpg
|
||||
- word: Hikaru no Go
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Hikaru_no_Go.jpg
|
||||
- word: 'JoJo no Kimyou na Bouken Part 3: Stardust Crusaders'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/JoJo_no_Kimyou_na_Bouken_Part_3_Stardust_Crusaders.jpg
|
||||
- word: 'Kamisama Hajimemashita: Kamisama, Shiawase ni Naru'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Kamisama_Hajimemashita_Kamisama_Shiawase_ni_Naru.jpg
|
||||
- word: 'Kuroko no Basket: Saikou no Present Desu'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Kuroko_no_Basket_Saikou_no_Present_Desu.jpg
|
||||
- word: 'Kuroshitsuji: Book of Circus'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Kuroshitsuji_Book_of_Circus.jpg
|
||||
- word: Akatsuki no Yona OVA
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Akatsuki_no_Yona_OVA.jpg
|
||||
- word: Dorohedoro
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Dorohedoro.jpg
|
||||
- word: Durarara!!x2 Ketsu
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Durararax2_Ketsu.jpg
|
||||
- word: 'Ginga Eiyuu Densetsu: Die Neue These - Seiran 2'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Ginga_Eiyuu_Densetsu_Die_Neue_These_-_Seiran_2.jpg
|
||||
- word: Gosick
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Gosick.jpg
|
||||
- word: 'Hidamari Sketch: Sae Hiro Sotsugyou-hen'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Hidamari_Sketch_Sae_Hiro_Sotsugyou-hen.jpg
|
||||
- word: 'Koukaku Kidoutai: Stand Alone Complex - The Laughing Man'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Koukaku_Kidoutai_Stand_Alone_Complex_-_The_Laughing_Man.jpg
|
||||
- word: 'Kuroshitsuji: Book of Murder'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Kuroshitsuji_Book_of_Murder.jpg
|
||||
- word: Mirai Shounen Conan
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Mirai_Shounen_Conan.jpg
|
||||
- word: Omoide no Marnie
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Omoide_no_Marnie.jpg
|
||||
- word: Shijou Saikyou no Deshi Kenichi
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Shijou_Saikyou_no_Deshi_Kenichi.jpg
|
||||
- word: 'Shokugeki no Souma: San no Sara'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Shokugeki_no_Souma_San_no_Sara.jpg
|
||||
- word: Tensei shitara Slime Datta Ken
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Tensei_shitara_Slime_Datta_Ken.jpg
|
||||
- word: 'Ramayana: The Legend of Prince Rama'
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Ramayana_The_Legend_of_Prince_Rama.jpg
|
||||
- word: Summer Wars
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Summer_Wars.jpg
|
||||
- word: Yuusha-Ou GaoGaiGar Final
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Yuusha-Ou_GaoGaiGar_Final.jpg
|
||||
- word: Dennou Coil
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Dennou_Coil.jpg
|
||||
- word: Ginga Eiyuu Densetsu Gaiden (1999)
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Ginga_Eiyuu_Densetsu_Gaiden_1999.jpg
|
||||
- word: Glass no Kamen (2005)
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Glass_no_Kamen_2005.jpg
|
||||
- word: Kill la Kill
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Kill_la_Kill.jpg
|
||||
- word: Koukyoushihen Eureka Seven
|
||||
imageUrl: https://cdn.nadeko.bot/animu/Koukyoushihen_Eureka_Seven.jpg
|
390
src/Ellie/data/hangman/countries.yml
Normal file
|
@ -0,0 +1,390 @@
|
|||
- word: Afghanistan
|
||||
imageUrl: https://cdn.nadeko.bot/flags/af-flag.gif
|
||||
- word: Albania
|
||||
imageUrl: https://cdn.nadeko.bot/flags/al-flag.gif
|
||||
- word: Algeria
|
||||
imageUrl: https://cdn.nadeko.bot/flags/ag-flag.gif
|
||||
- word: Andorra
|
||||
imageUrl: https://cdn.nadeko.bot/flags/an-flag.gif
|
||||
- word: Angola
|
||||
imageUrl: https://cdn.nadeko.bot/flags/ao-flag.gif
|
||||
- word: Antigua and Barbuda
|
||||
imageUrl: https://cdn.nadeko.bot/flags/ac-flag.gif
|
||||
- word: Argentina
|
||||
imageUrl: https://cdn.nadeko.bot/flags/ar-flag.gif
|
||||
- word: Armenia
|
||||
imageUrl: https://cdn.nadeko.bot/flags/am-flag.gif
|
||||
- word: Australia
|
||||
imageUrl: https://cdn.nadeko.bot/flags/as-flag.gif
|
||||
- word: Austria
|
||||
imageUrl: https://cdn.nadeko.bot/flags/au-flag.gif
|
||||
- word: Azerbaijan
|
||||
imageUrl: https://cdn.nadeko.bot/flags/aj-flag.gif
|
||||
- word: Bahamas
|
||||
imageUrl: https://cdn.nadeko.bot/flags/bf-flag.gif
|
||||
- word: Bahrain
|
||||
imageUrl: https://cdn.nadeko.bot/flags/ba-flag.gif
|
||||
- word: Bangladesh
|
||||
imageUrl: https://cdn.nadeko.bot/flags/bg-flag.gif
|
||||
- word: Barbados
|
||||
imageUrl: https://cdn.nadeko.bot/flags/bb-flag.gif
|
||||
- word: Belarus
|
||||
imageUrl: https://cdn.nadeko.bot/flags/bo-flag.gif
|
||||
- word: Belgium
|
||||
imageUrl: https://cdn.nadeko.bot/flags/be-flag.gif
|
||||
- word: Belize
|
||||
imageUrl: https://cdn.nadeko.bot/flags/bh-flag.gif
|
||||
- word: Benin
|
||||
imageUrl: https://cdn.nadeko.bot/flags/bn-flag.gif
|
||||
- word: Bhutan
|
||||
imageUrl: https://cdn.nadeko.bot/flags/bt-flag.gif
|
||||
- word: Bolivia
|
||||
imageUrl: https://cdn.nadeko.bot/flags/bl-flag.gif
|
||||
- word: Bosnia and Herzegovina
|
||||
imageUrl: https://cdn.nadeko.bot/flags/bk-flag.gif
|
||||
- word: Botswana
|
||||
imageUrl: https://cdn.nadeko.bot/flags/bc-flag.gif
|
||||
- word: Brazil
|
||||
imageUrl: https://cdn.nadeko.bot/flags/br-flag.gif
|
||||
- word: Brunei
|
||||
imageUrl: https://cdn.nadeko.bot/flags/bx-flag.gif
|
||||
- word: Bulgaria
|
||||
imageUrl: https://cdn.nadeko.bot/flags/bu-flag.gif
|
||||
- word: Burkina Faso
|
||||
imageUrl: https://cdn.nadeko.bot/flags/uv-flag.gif
|
||||
- word: Burundi
|
||||
imageUrl: https://cdn.nadeko.bot/flags/by-flag.gif
|
||||
- word: Ivory Coast
|
||||
imageUrl: https://cdn.nadeko.bot/flags/iv-flag.gif
|
||||
- word: Cabo Verde
|
||||
imageUrl: https://cdn.nadeko.bot/flags/cv-flag.gif
|
||||
- word: Cambodia
|
||||
imageUrl: https://cdn.nadeko.bot/flags/cb-flag.gif
|
||||
- word: Cameroon
|
||||
imageUrl: https://cdn.nadeko.bot/flags/cm-flag.gif
|
||||
- word: Canada
|
||||
imageUrl: https://cdn.nadeko.bot/flags/ca-flag.gif
|
||||
- word: Central African Republic
|
||||
imageUrl: https://cdn.nadeko.bot/flags/ct-flag.gif
|
||||
- word: Chad
|
||||
imageUrl: https://cdn.nadeko.bot/flags/cd-flag.gif
|
||||
- word: Chile
|
||||
imageUrl: https://cdn.nadeko.bot/flags/ci-flag.gif
|
||||
- word: China
|
||||
imageUrl: https://cdn.nadeko.bot/flags/ch-flag.gif
|
||||
- word: Colombia
|
||||
imageUrl: https://cdn.nadeko.bot/flags/co-flag.gif
|
||||
- word: Comoros
|
||||
imageUrl: https://cdn.nadeko.bot/flags/cn-flag.gif
|
||||
- word: Congo
|
||||
imageUrl: https://cdn.nadeko.bot/flags/cg-flag.gif
|
||||
- word: Costa Rica
|
||||
imageUrl: https://cdn.nadeko.bot/flags/cs-flag.gif
|
||||
- word: Croatia
|
||||
imageUrl: https://cdn.nadeko.bot/flags/hr-flag.gif
|
||||
- word: Cuba
|
||||
imageUrl: https://cdn.nadeko.bot/flags/cu-flag.gif
|
||||
- word: Cyprus
|
||||
imageUrl: https://cdn.nadeko.bot/flags/cy-flag.gif
|
||||
- word: Czechia
|
||||
imageUrl: https://cdn.nadeko.bot/flags/ez-flag.gif
|
||||
- word: Denmark
|
||||
imageUrl: https://cdn.nadeko.bot/flags/da-flag.gif
|
||||
- word: Djibouti
|
||||
imageUrl: https://cdn.nadeko.bot/flags/dj-flag.gif
|
||||
- word: Dominica
|
||||
imageUrl: https://cdn.nadeko.bot/flags/do-flag.gif
|
||||
- word: Dominican Republic
|
||||
imageUrl: https://cdn.nadeko.bot/flags/dr-flag.gif
|
||||
- word: Democratic People's Republic of Korea
|
||||
imageUrl: https://cdn.nadeko.bot/flags/kn-flag.gif
|
||||
- word: Democratic Republic of the Congo
|
||||
imageUrl: https://cdn.nadeko.bot/flags/congo-flag.gif
|
||||
- word: Ecuador
|
||||
imageUrl: https://cdn.nadeko.bot/flags/ec-flag.gif
|
||||
- word: Egypt
|
||||
imageUrl: https://cdn.nadeko.bot/flags/eg-flag.gif
|
||||
- word: El Salvador
|
||||
imageUrl: https://cdn.nadeko.bot/flags/es-flag.gif
|
||||
- word: Equatorial Guinea
|
||||
imageUrl: https://cdn.nadeko.bot/flags/ek-flag.gif
|
||||
- word: Eritrea
|
||||
imageUrl: https://cdn.nadeko.bot/flags/er-flag.gif
|
||||
- word: Estonia
|
||||
imageUrl: https://cdn.nadeko.bot/flags/en-flag.gif
|
||||
- word: Eswatini
|
||||
imageUrl: https://cdn.nadeko.bot/flags/wz-flag.gif
|
||||
- word: Ethiopia
|
||||
imageUrl: https://cdn.nadeko.bot/flags/et-flag.gif
|
||||
- word: Fiji
|
||||
imageUrl: https://cdn.nadeko.bot/flags/fj-flag.gif
|
||||
- word: Finland
|
||||
imageUrl: https://cdn.nadeko.bot/flags/fi-flag.gif
|
||||
- word: France
|
||||
imageUrl: https://cdn.nadeko.bot/flags/fr-flag.gif
|
||||
- word: Gabon
|
||||
imageUrl: https://cdn.nadeko.bot/flags/gb-flag.gif
|
||||
- word: Gambia
|
||||
imageUrl: https://cdn.nadeko.bot/flags/ga-flag.gif
|
||||
- word: Georgia
|
||||
imageUrl: https://cdn.nadeko.bot/flags/gg-flag.gif
|
||||
- word: Germany
|
||||
imageUrl: https://cdn.nadeko.bot/flags/gm-flag.gif
|
||||
- word: Ghana
|
||||
imageUrl: https://cdn.nadeko.bot/flags/gh-flag.gif
|
||||
- word: Greece
|
||||
imageUrl: https://cdn.nadeko.bot/flags/gr-flag.gif
|
||||
- word: Grenada
|
||||
imageUrl: https://cdn.nadeko.bot/flags/gj-flag.gif
|
||||
- word: Guatemala
|
||||
imageUrl: https://cdn.nadeko.bot/flags/gt-flag.gif
|
||||
- word: Guinea
|
||||
imageUrl: https://cdn.nadeko.bot/flags/gv-flag.gif
|
||||
- word: Guinea-Bissau
|
||||
imageUrl: https://cdn.nadeko.bot/flags/pu-flag.gif
|
||||
- word: Guyana
|
||||
imageUrl: https://cdn.nadeko.bot/flags/gy-flag.gif
|
||||
- word: Haiti
|
||||
imageUrl: https://cdn.nadeko.bot/flags/ha-flag.gif
|
||||
- word: Holy See
|
||||
imageUrl: https://cdn.nadeko.bot/flags/vt-flag.gif
|
||||
- word: Honduras
|
||||
imageUrl: https://cdn.nadeko.bot/flags/ho-flag.gif
|
||||
- word: Hungary
|
||||
imageUrl: https://cdn.nadeko.bot/flags/hu-flag.gif
|
||||
- word: Iceland
|
||||
imageUrl: https://cdn.nadeko.bot/flags/ic-flag.gif
|
||||
- word: India
|
||||
imageUrl: https://cdn.nadeko.bot/flags/in-flag.gif
|
||||
- word: Indonesia
|
||||
imageUrl: https://cdn.nadeko.bot/flags/id-flag.gif
|
||||
- word: Iran
|
||||
imageUrl: https://cdn.nadeko.bot/flags/ir-flag.gif
|
||||
- word: Iraq
|
||||
imageUrl: https://cdn.nadeko.bot/flags/iz-flag.gif
|
||||
- word: Ireland
|
||||
imageUrl: https://cdn.nadeko.bot/flags/ei-flag.gif
|
||||
- word: Israel
|
||||
imageUrl: https://cdn.nadeko.bot/flags/is-flag.gif
|
||||
- word: Italy
|
||||
imageUrl: https://cdn.nadeko.bot/flags/it-flag.gif
|
||||
- word: Jamaica
|
||||
imageUrl: https://cdn.nadeko.bot/flags/jm-flag.gif
|
||||
- word: Japan
|
||||
imageUrl: https://cdn.nadeko.bot/flags/ja-flag.gif
|
||||
- word: Jordan
|
||||
imageUrl: https://cdn.nadeko.bot/flags/jo-flag.gif
|
||||
- word: Kazakhstan
|
||||
imageUrl: https://cdn.nadeko.bot/flags/kz-flag.gif
|
||||
- word: Kenya
|
||||
imageUrl: https://cdn.nadeko.bot/flags/ke-flag.gif
|
||||
- word: Kiribati
|
||||
imageUrl: https://cdn.nadeko.bot/flags/kr-flag.gif
|
||||
- word: Kuwait
|
||||
imageUrl: https://cdn.nadeko.bot/flags/ku-flag.gif
|
||||
- word: Kyrgyzstan
|
||||
imageUrl: https://cdn.nadeko.bot/flags/kg-flag.gif
|
||||
- word: Laos
|
||||
imageUrl: https://cdn.nadeko.bot/flags/la-flag.gif
|
||||
- word: Latvia
|
||||
imageUrl: https://cdn.nadeko.bot/flags/lg-flag.gif
|
||||
- word: Lebanon
|
||||
imageUrl: https://cdn.nadeko.bot/flags/le-flag.gif
|
||||
- word: Lesotho
|
||||
imageUrl: https://cdn.nadeko.bot/flags/lt-flag.gif
|
||||
- word: Liberia
|
||||
imageUrl: https://cdn.nadeko.bot/flags/li-flag.gif
|
||||
- word: Libya
|
||||
imageUrl: https://cdn.nadeko.bot/flags/ly-flag.gif
|
||||
- word: Liechtenstein
|
||||
imageUrl: https://cdn.nadeko.bot/flags/ls-flag.gif
|
||||
- word: Lithuania
|
||||
imageUrl: https://cdn.nadeko.bot/flags/lh-flag.gif
|
||||
- word: Luxembourg
|
||||
imageUrl: https://cdn.nadeko.bot/flags/lu-flag.gif
|
||||
- word: Madagascar
|
||||
imageUrl: https://cdn.nadeko.bot/flags/ma-flag.gif
|
||||
- word: Malawi
|
||||
imageUrl: https://cdn.nadeko.bot/flags/mi-flag.gif
|
||||
- word: Malaysia
|
||||
imageUrl: https://cdn.nadeko.bot/flags/my-flag.gif
|
||||
- word: Maldives
|
||||
imageUrl: https://cdn.nadeko.bot/flags/mv-flag.gif
|
||||
- word: Mali
|
||||
imageUrl: https://cdn.nadeko.bot/flags/ml-flag.gif
|
||||
- word: Malta
|
||||
imageUrl: https://cdn.nadeko.bot/flags/mt-flag.gif
|
||||
- word: Marshall Islands
|
||||
imageUrl: https://cdn.nadeko.bot/flags/rm-flag.gif
|
||||
- word: Mauritania
|
||||
imageUrl: https://cdn.nadeko.bot/flags/mr-flag.gif
|
||||
- word: Mauritius
|
||||
imageUrl: https://cdn.nadeko.bot/flags/mp-flag.gif
|
||||
- word: Mexico
|
||||
imageUrl: https://cdn.nadeko.bot/flags/mx-flag.gif
|
||||
- word: Micronesia
|
||||
imageUrl: https://cdn.nadeko.bot/flags/fm-flag.gif
|
||||
- word: Moldova
|
||||
imageUrl: https://cdn.nadeko.bot/flags/md-flag.gif
|
||||
- word: Monaco
|
||||
imageUrl: https://cdn.nadeko.bot/flags/mn-flag.gif
|
||||
- word: Mongolia
|
||||
imageUrl: https://cdn.nadeko.bot/flags/mg-flag.gif
|
||||
- word: Montenegro
|
||||
imageUrl: https://cdn.nadeko.bot/flags/mj-flag.gif
|
||||
- word: Morocco
|
||||
imageUrl: https://cdn.nadeko.bot/flags/mo-flag.gif
|
||||
- word: Mozambique
|
||||
imageUrl: https://cdn.nadeko.bot/flags/mz-flag.gif
|
||||
- word: Myanmar
|
||||
imageUrl: https://cdn.nadeko.bot/flags/bm-flag.gif
|
||||
- word: Namibia
|
||||
imageUrl: https://cdn.nadeko.bot/flags/wa-flag.gif
|
||||
- word: Nauru
|
||||
imageUrl: https://cdn.nadeko.bot/flags/nr-flag.gif
|
||||
- word: Nepal
|
||||
imageUrl: https://cdn.nadeko.bot/flags/np-flag.gif
|
||||
- word: Netherlands
|
||||
imageUrl: https://cdn.nadeko.bot/flags/nl-flag.gif
|
||||
- word: New Zealand
|
||||
imageUrl: https://cdn.nadeko.bot/flags/nz-flag.gif
|
||||
- word: Nicaragua
|
||||
imageUrl: https://cdn.nadeko.bot/flags/nu-flag.gif
|
||||
- word: Niger
|
||||
imageUrl: https://cdn.nadeko.bot/flags/ng-flag.gif
|
||||
- word: Nigeria
|
||||
imageUrl: https://cdn.nadeko.bot/flags/ni-flag.gif
|
||||
- word: North Macedonia
|
||||
imageUrl: https://cdn.nadeko.bot/flags/mk-flag.gif
|
||||
- word: Norway
|
||||
imageUrl: https://cdn.nadeko.bot/flags/no-flag.gif
|
||||
- word: Oman
|
||||
imageUrl: https://cdn.nadeko.bot/flags/mu-flag.gif
|
||||
- word: Pakistan
|
||||
imageUrl: https://cdn.nadeko.bot/flags/pk-flag.gif
|
||||
- word: Palau
|
||||
imageUrl: https://cdn.nadeko.bot/flags/ps-flag.gif
|
||||
- word: Panama
|
||||
imageUrl: https://cdn.nadeko.bot/flags/pm-flag.gif
|
||||
- word: Papua New Guinea
|
||||
imageUrl: https://cdn.nadeko.bot/flags/pp-flag.gif
|
||||
- word: Paraguay
|
||||
imageUrl: https://cdn.nadeko.bot/flags/pa-flag.gif
|
||||
- word: Peru
|
||||
imageUrl: https://cdn.nadeko.bot/flags/pe-flag.gif
|
||||
- word: Philippines
|
||||
imageUrl: https://cdn.nadeko.bot/flags/rp-flag.gif
|
||||
- word: Poland
|
||||
imageUrl: https://cdn.nadeko.bot/flags/pl-flag.gif
|
||||
- word: Portugal
|
||||
imageUrl: https://cdn.nadeko.bot/flags/po-flag.gif
|
||||
- word: Qatar
|
||||
imageUrl: https://cdn.nadeko.bot/flags/qa-flag.gif
|
||||
- word: Romania
|
||||
imageUrl: https://cdn.nadeko.bot/flags/ro-flag.gif
|
||||
- word: Russia
|
||||
imageUrl: https://cdn.nadeko.bot/flags/rs-flag.gif
|
||||
- word: Rwanda
|
||||
imageUrl: https://cdn.nadeko.bot/flags/rw-flag.gif
|
||||
- word: Saint Kitts and Nevis
|
||||
imageUrl: https://cdn.nadeko.bot/flags/sc-flag.gif
|
||||
- word: Saint Lucia
|
||||
imageUrl: https://cdn.nadeko.bot/flags/st-flag.gif
|
||||
- word: Samoa
|
||||
imageUrl: https://cdn.nadeko.bot/flags/ws-flag.gif
|
||||
- word: San Marino
|
||||
imageUrl: https://cdn.nadeko.bot/flags/sm-flag.gif
|
||||
- word: Sao Tome and Principe
|
||||
imageUrl: https://cdn.nadeko.bot/flags/tp-flag.gif
|
||||
- word: Saudi Arabia
|
||||
imageUrl: https://cdn.nadeko.bot/flags/sa-flag.gif
|
||||
- word: Senegal
|
||||
imageUrl: https://cdn.nadeko.bot/flags/sg-flag.gif
|
||||
- word: Serbia
|
||||
imageUrl: https://cdn.nadeko.bot/flags/ri-flag.gif
|
||||
- word: Seychelles
|
||||
imageUrl: https://cdn.nadeko.bot/flags/se-flag.gif
|
||||
- word: Sierra Leone
|
||||
imageUrl: https://cdn.nadeko.bot/flags/sl-flag.gif
|
||||
- word: Singapore
|
||||
imageUrl: https://cdn.nadeko.bot/flags/sn-flag.gif
|
||||
- word: Slovakia
|
||||
imageUrl: https://cdn.nadeko.bot/flags/lo-flag.gif
|
||||
- word: Slovenia
|
||||
imageUrl: https://cdn.nadeko.bot/flags/si-flag.gif
|
||||
- word: Solomon Islands
|
||||
imageUrl: https://cdn.nadeko.bot/flags/bp-flag.gif
|
||||
- word: Somalia
|
||||
imageUrl: https://cdn.nadeko.bot/flags/so-flag.gif
|
||||
- word: South Africa
|
||||
imageUrl: https://cdn.nadeko.bot/flags/sf-flag.gif
|
||||
- word: South Korea
|
||||
imageUrl: https://cdn.nadeko.bot/flags/ks-flag.gif
|
||||
- word: South Sudan
|
||||
imageUrl: https://cdn.nadeko.bot/flags/od-flag.gif
|
||||
- word: Spain
|
||||
imageUrl: https://cdn.nadeko.bot/flags/sp-flag.gif
|
||||
- word: Sri Lanka
|
||||
imageUrl: https://cdn.nadeko.bot/flags/ce-flag.gif
|
||||
- word: St. Vincent Grenadines
|
||||
imageUrl: https://cdn.nadeko.bot/flags/vc-flag.gif
|
||||
- word: State of Palestine
|
||||
imageUrl: https://cdn.nadeko.bot/flags/palestine-flag.gif
|
||||
- word: Sudan
|
||||
imageUrl: https://cdn.nadeko.bot/flags/su-flag.gif
|
||||
- word: Suriname
|
||||
imageUrl: https://cdn.nadeko.bot/flags/ns-flag.gif
|
||||
- word: Sweden
|
||||
imageUrl: https://cdn.nadeko.bot/flags/sw-flag.gif
|
||||
- word: Switzerland
|
||||
imageUrl: https://cdn.nadeko.bot/flags/sz-flag.gif
|
||||
- word: Syria
|
||||
imageUrl: https://cdn.nadeko.bot/flags/sy-flag.gif
|
||||
- word: Tajikistan
|
||||
imageUrl: https://cdn.nadeko.bot/flags/ti-flag.gif
|
||||
- word: Tanzania
|
||||
imageUrl: https://cdn.nadeko.bot/flags/tz-flag.gif
|
||||
- word: Thailand
|
||||
imageUrl: https://cdn.nadeko.bot/flags/th-flag.gif
|
||||
- word: Timor-Leste
|
||||
imageUrl: https://cdn.nadeko.bot/flags/tt-flag.gif
|
||||
- word: Togo
|
||||
imageUrl: https://cdn.nadeko.bot/flags/to-flag.gif
|
||||
- word: Tonga
|
||||
imageUrl: https://cdn.nadeko.bot/flags/tn-flag.gif
|
||||
- word: Trinidad and Tobago
|
||||
imageUrl: https://cdn.nadeko.bot/flags/td-flag.gif
|
||||
- word: Tunisia
|
||||
imageUrl: https://cdn.nadeko.bot/flags/ts-flag.gif
|
||||
- word: Turkey
|
||||
imageUrl: https://cdn.nadeko.bot/flags/tu-flag.gif
|
||||
- word: Turkmenistan
|
||||
imageUrl: https://cdn.nadeko.bot/flags/tx-flag.gif
|
||||
- word: Tuvalu
|
||||
imageUrl: https://cdn.nadeko.bot/flags/tv-flag.gif
|
||||
- word: United Arab Emirates
|
||||
imageUrl: https://cdn.nadeko.bot/flags/ae-flag.gif
|
||||
- word: United Kingdom
|
||||
imageUrl: https://cdn.nadeko.bot/flags/uk-flag.gif
|
||||
- word: United States Of America
|
||||
imageUrl: https://cdn.nadeko.bot/flags/us-flag.gif
|
||||
- word: Uganda
|
||||
imageUrl: https://cdn.nadeko.bot/flags/ug-flag.gif
|
||||
- word: Ukraine
|
||||
imageUrl: https://cdn.nadeko.bot/flags/up-flag.gif
|
||||
- word: Uruguay
|
||||
imageUrl: https://cdn.nadeko.bot/flags/uy-flag.gif
|
||||
- word: Uzbekistan
|
||||
imageUrl: https://cdn.nadeko.bot/flags/uz-flag.gif
|
||||
- word: Vanuatu
|
||||
imageUrl: https://cdn.nadeko.bot/flags/nh-flag.gif
|
||||
- word: Venezuela
|
||||
imageUrl: https://cdn.nadeko.bot/flags/ve-flag.gif
|
||||
- word: Vietnam
|
||||
imageUrl: https://cdn.nadeko.bot/flags/vm-flag.gif
|
||||
- word: Yemen
|
||||
imageUrl: https://cdn.nadeko.bot/flags/ym-flag.gif
|
||||
- word: Zambia
|
||||
imageUrl: https://cdn.nadeko.bot/flags/za-flag.gif
|
||||
- word: Zimbabwe
|
||||
imageUrl: https://cdn.nadeko.bot/flags/zi-flag.gif
|
400
src/Ellie/data/hangman/movies.yml
Normal file
|
@ -0,0 +1,400 @@
|
|||
- word: 'Underworld: Blood Wars'
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/PIXSMakrO3s2dqA7mCvAAoVR0E.jpg
|
||||
- word: Fantastic Beasts and Where to Find Them
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/6I2tPx6KIiBB4TWFiWwNUzrbxUn.jpg
|
||||
- word: Suicide Squad
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/34dxtTxMHGKw1njHpTjDqR8UBHd.jpg
|
||||
- word: Miss Peregrine's Home for Peculiar Children
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/qXQinDhDZkTiqEGLnav0h1YSUu8.jpg
|
||||
- word: Sully
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/vC9H1ZVdXi1KjH4aPfGB54mvDNh.jpg
|
||||
- word: Arrival
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/yIZ1xendyqKvY3FGeeUYUd5X9Mm.jpg
|
||||
- word: Doctor Strange
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/tFI8VLMgSTTU38i8TIsklfqS9Nl.jpg
|
||||
- word: 'Mad Max: Fury Road'
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/tbhdm8UJAb4ViCTsulYFL3lxMCd.jpg
|
||||
- word: Interstellar
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/xu9zaAevzQ5nnrsXN6JcahLnG4i.jpg
|
||||
- word: Jason Bourne
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/AoT2YrJUJlg5vKE3iMOLvHlTd3m.jpg
|
||||
- word: 'Captain America: Civil War'
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/m5O3SZvQ6EgD5XXXLPIP1wLppeW.jpg
|
||||
- word: Moana
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/1qGzqGUd1pa05aqYXGSbLkiBlLB.jpg
|
||||
- word: 'The Hunger Games: Mockingjay - Part 1'
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/83nHcz2KcnEpPXY50Ky2VldewJJ.jpg
|
||||
- word: Underworld
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/cPhRPAJWK8BuuJqqf6PztzvOlnZ.jpg
|
||||
- word: The Secret Life of Pets
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/lubzBMQLLmG88CLQ4F3TxZr2Q7N.jpg
|
||||
- word: Insurgent
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/L5QRL1O3fGs2hH1LbtYyVl8Tce.jpg
|
||||
- word: Jurassic World
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/dkMD5qlogeRMiEixC4YNPUvax2T.jpg
|
||||
- word: Ben-Hur
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/A4xbEpe9LevQCdvaNC0z6r8AfYk.jpg
|
||||
- word: Finding Dory
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/iWRKYHTFlsrxQtfQqFOQyceL83P.jpg
|
||||
- word: Guardians of the Galaxy
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/bHarw8xrmQeqf3t8HpuMY7zoK4x.jpg
|
||||
- word: Ghostbusters
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/58bvfg9b040GDmKffLUJsEjg779.jpg
|
||||
- word: Inferno
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/anmLLbDx9d98NMZRyVUtxwJR6ab.jpg
|
||||
- word: Star Trek Beyond
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/6uBlEXZCUHM15UNZqNig17VdN4m.jpg
|
||||
- word: The BFG
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/eYT9XQBo1eC4DwPYqhCol0dFFc2.jpg
|
||||
- word: Pete's Dragon
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/AaRhHX0Jfpju0O6hNzScPRgX9Mm.jpg
|
||||
- word: 'Mechanic: Resurrection'
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/6kMu4vECAyTpj2Z7n8viJ4RAaYh.jpg
|
||||
- word: The Imitation Game
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/qcb6z1HpokTOKdjqDTsnjJk0Xvg.jpg
|
||||
- word: 'X-Men: Apocalypse'
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/oQWWth5AOtbWG9o8SCAviGcADed.jpg
|
||||
- word: John Wick
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/mFb0ygcue4ITixDkdr7wm1Tdarx.jpg
|
||||
- word: Deadpool
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/n1y094tVDFATSzkTnFxoGZ1qNsG.jpg
|
||||
- word: 'Batman v Superman: Dawn of Justice'
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/vsjBeMPZtyB7yNsYY56XYxifaQZ.jpg
|
||||
- word: The Revenant
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/kiWvoV78Cc3fUwkOHKzyBgVdrDD.jpg
|
||||
- word: Now You See Me 2
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/zrAO2OOa6s6dQMQ7zsUbDyIBrAP.jpg
|
||||
- word: 'Star Wars: The Force Awakens'
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/c2Ax8Rox5g6CneChwy1gmu4UbSb.jpg
|
||||
- word: The Martian
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/sy3e2e4JwdAtd2oZGA2uUilZe8j.jpg
|
||||
- word: Bridget Jones's Baby
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/w9VNDcQet0TUoLRWHg8JbT4QjpW.jpg
|
||||
- word: Minions
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/uX7LXnsC7bZJZjn048UCOwkPXWJ.jpg
|
||||
- word: Star Wars
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/4iJfYYoQzZcONB9hNzg0J0wWyPH.jpg
|
||||
- word: Spectre
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/wVTYlkKPKrljJfugXN7UlLNjtuJ.jpg
|
||||
- word: 'Rogue One: A Star Wars Story'
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/tZjVVIYXACV4IIIhXeIM59ytqwS.jpg
|
||||
- word: Big Hero 6
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/2BXd0t9JdVqCp9sKf6kzMkr7QjB.jpg
|
||||
- word: 'Independence Day: Resurgence'
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/8SqBiesvo1rh9P1hbJTmnVum6jv.jpg
|
||||
- word: The Dark Knight
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/nnMC0BM6XbjIIrT4miYmMtPGcQV.jpg
|
||||
- word: Sausage Party
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/nBvyktlVHjLx5nZ9Oxaoqo5jwbf.jpg
|
||||
- word: Gone Girl
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/bt6DhdALyhf90gReozoQ0y3R3vZ.jpg
|
||||
- word: Zootopia
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/mhdeE1yShHTaDbJVdWyTlzFvNkr.jpg
|
||||
- word: Allegiant
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/sFthBeT0Y3WVfg6b3MkcJs9qfzq.jpg
|
||||
- word: 'The Hobbit: The Battle of the Five Armies'
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/qhH3GyIfAnGv1pjdV3mw03qAilg.jpg
|
||||
- word: Fury
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/pKawqrtCBMmxarft7o1LbEynys7.jpg
|
||||
- word: The Jungle Book
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/eIOTsGg9FCVrBc4r2nXaV61JF4F.jpg
|
||||
- word: 'Jack Reacher: Never Go Back'
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/4ynQYtSEuU5hyipcGkfD6ncwtwz.jpg
|
||||
- word: 'Pirates of the Caribbean: The Curse of the Black Pearl'
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/8AUQ7YlJJA9C8kWk8P4YNHIcFDE.jpg
|
||||
- word: 'The Hunger Games: Mockingjay - Part 2'
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/qjn3fzCAHGfl0CzeUlFbjrsmu4c.jpg
|
||||
- word: Hell or High Water
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/5GbRKOQSY08U3SQXXcQAKEnL2rE.jpg
|
||||
- word: Terminator Genisys
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/bIlYH4l2AyYvEysmS2AOfjO7Dn8.jpg
|
||||
- word: Ant-Man
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/kvXLZqY0Ngl1XSw7EaMQO0C1CCj.jpg
|
||||
- word: The Shallows
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/lEkHdk4g0nAKtMcHBtSmC1ON3O1.jpg
|
||||
- word: 'Underworld: Awakening'
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/8iNsXY3LPsuT0gnUiTBMoNuRZI7.jpg
|
||||
- word: Inception
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/s2bT29y0ngXxxu2IA8AOzzXTRhd.jpg
|
||||
- word: 'Underworld: Evolution'
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/lLZTsh8qDZsHCG9GMnqZKIlluZT.jpg
|
||||
- word: The Hateful Eight
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/sSvgNBeBNzAuKl8U8sP50ETJPgx.jpg
|
||||
- word: Fight Club
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/wSJPjqp2AZWQ6REaqkMuXsCIs64.jpg
|
||||
- word: 'Avengers: Age of Ultron'
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/570qhjGZmGPrBGnfx70jcwIuBr4.jpg
|
||||
- word: 'Underworld: Rise of the Lycans'
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/gVfnoiCJBdv2SN7poIbU7eyNVq1.jpg
|
||||
- word: Tomorrowland
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/fQbc5XuB4vWA9gnY1CmyxFaOufF.jpg
|
||||
- word: The Matrix
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/7u3pxc0K1wx32IleAkLv78MKgrw.jpg
|
||||
- word: Furious 7
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/ypyeMfKydpyuuTMdp36rMlkGDUL.jpg
|
||||
- word: Pixels
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/nvZVu6inpwLHKqRXZhye3S4uqei.jpg
|
||||
- word: Emerald Green
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/ioKU3dEgx0HeUWp3KI2X7YF8FdC.jpg
|
||||
- word: Whiplash
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/6bbZ6XyvgfjhQwbplnUh1LSj1ky.jpg
|
||||
- word: The Legend of Tarzan
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/pWNBPN8ghaKtGLcQBMwNyM32Wbm.jpg
|
||||
- word: Lucy
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/eCgIoGvfNXrbSiQGqQHccuHjQHm.jpg
|
||||
- word: Allied
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/6o4KCKjP1WcefXLBNRyhEenB2nW.jpg
|
||||
- word: Eliminators
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/lNhwy85HjhieIVfmWoDAL2wCchB.jpg
|
||||
- word: 'Ice Age: Collision Course'
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/o29BFNqgXOUT1yHNYusnITsH7P9.jpg
|
||||
- word: Batman Begins
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/65JWXDCAfwHhJKnDwRnEgVB411X.jpg
|
||||
- word: Teenage Mutant Ninja Turtles
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/OqCXGt5nl1cHPeotxCDvXLLe6p.jpg
|
||||
- word: Birdman
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/hUDEHvhNJLNcb83Pp7xnFn0Wj09.jpg
|
||||
- word: Avatar
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/5XPPB44RQGfkBrbJxmtdndKz05n.jpg
|
||||
- word: 'Kingsman: The Secret Service'
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/pfyWJUxrBTT2UIPoEQF3iFTHcQT.jpg
|
||||
- word: "Pirates of the Caribbean: At World's End"
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/8ZgpAftUiYTU76IhUADITa3Ur9n.jpg
|
||||
- word: Bad Moms
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/elPpPBuYB2Zn5wFwz2FSlJlKUjp.jpg
|
||||
- word: Inside Out
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/szytSpLAyBh3ULei3x663mAv5ZT.jpg
|
||||
- word: Harry Potter and the Philosopher's Stone
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/uD93T339xX1k3fnDUaeopZBiajY.jpg
|
||||
- word: Dawn of the Planet of the Apes
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/rjUl3pd1LHVOVfG4IGcyA1cId5l.jpg
|
||||
- word: Iron Man
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/ZQixhAZx6fH1VNafFXsqa1B8QI.jpg
|
||||
- word: The Dark Knight Rises
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/3bgtUfKQKNi3nJsAB5URpP2wdRt.jpg
|
||||
- word: Don't Breathe
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/bCThHXQ3aLLDU3KFST0rC8mTan5.jpg
|
||||
- word: The Avengers
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/hbn46fQaRmlpBuUrEiFqv0GDL6Y.jpg
|
||||
- word: Alice Through the Looking Glass
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/rWlXrfmX1FgcPyj7oQmLfwKRaam.jpg
|
||||
- word: Now You See Me
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/9wbXqcx6rHhoZ9Esp03C7amQzom.jpg
|
||||
- word: The Accountant
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/i9flZtw3BwukADQpu5PlrkwPYSY.jpg
|
||||
- word: The Maze Runner
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/yTbPPmLAn7DiiM0sPYfZduoAjB.jpg
|
||||
- word: Forrest Gump
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/ctOEhQiFIHWkiaYp7b0ibSTe5IL.jpg
|
||||
- word: 'The Hunger Games: Catching Fire'
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/wRCPG1lsgfTFkWJ7G3eWgxCgv0C.jpg
|
||||
- word: Warcraft
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/5SX2rgKXZ7NVmAJR5z5LprqSXKa.jpg
|
||||
- word: 'Eddie Izzard: Glorious'
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/2XHkh7xLqH168KRqMwDuiTmuyQi.jpg
|
||||
- word: Office Christmas Party
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/bzguuhqUI9G8jJ3EBtJ9p12g1Lr.jpg
|
||||
- word: 'Transformers: The Last Knight'
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/lQmtMCQgBwcODAyNnKGQrW0Kza8.jpg
|
||||
- word: Skyfall
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/AunH2MIKIbnU9khgFp45eJlydPu.jpg
|
||||
- word: 'The Hobbit: An Unexpected Journey'
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/jjAq3tCezdlQduusgtMhpY2XzW0.jpg
|
||||
- word: 'The Lord of the Rings: The Fellowship of the Ring'
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/pIUvQ9Ed35wlWhY2oU6OmwEsmzG.jpg
|
||||
- word: Kubo and the Two Strings
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/n4FeRnlH0ERa1kCUh0NXOyQvxnd.jpg
|
||||
- word: 10 Cloverfield Lane
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/qEu2EJBQUNFx5mSKOCItwZm74ZE.jpg
|
||||
- word: 'Captain America: The First Avenger'
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/pmZtj1FKvQqISS6iQbkiLg5TAsr.jpg
|
||||
- word: The Shawshank Redemption
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/xBKGJQsAIeweesB79KC89FpBrVr.jpg
|
||||
- word: Me Before You
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/o4lxNwKJz8oq3R0kLOIsDlHbDhZ.jpg
|
||||
- word: The Magnificent Seven
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/T3LrH6bnV74llVbFpQsCBrGaU9.jpg
|
||||
- word: The Lion King
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/klI0K4oQMsLhHdjA9Uw8WLugk9v.jpg
|
||||
- word: Quantum of Solace
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/hfZVY8lMiE7HH1cDc2qzSFF6Kbt.jpg
|
||||
- word: Sing
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/srpt7oa3AmmJXd2K5x9ZVzmV0I3.jpg
|
||||
- word: Nightcrawler
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/ts4j3zYaPzdUVF3ijBeBdGVDWjX.jpg
|
||||
- word: Snowden
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/qzGFm7uF1HExPUAcAPwC3Hzk5WR.jpg
|
||||
- word: The Equalizer
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/b1uY9m6sZLLfa8jxtBvZg9esSvd.jpg
|
||||
- word: Divergent
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/g6WT9zxATzTy9NVu2xwbxDAxvjd.jpg
|
||||
- word: "Pirates of the Caribbean: Dead Man's Chest"
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/hdHgIcljPHli4xaJGt0INz8Gn3J.jpg
|
||||
- word: War Dogs
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/2cLndRZy8e3das3vVaK3BdJfRIi.jpg
|
||||
- word: Pulp Fiction
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/mte63qJaVnoxkkXbHkdFujBnBgd.jpg
|
||||
- word: 'Transformers: Age of Extinction'
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/cHy7nSitAVgvZ7qfCK4JO47t3oZ.jpg
|
||||
- word: Gladiator
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/5vZw7ltCKI0JiOYTtRxaIC3DX0e.jpg
|
||||
- word: Nerve
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/a0wohltYr7Tzkgg2X6QKBe3txj1.jpg
|
||||
- word: I Am Legend
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/u6Qg7TH7Oh1IFWCQSRr4htFFt0A.jpg
|
||||
- word: 'Teenage Mutant Ninja Turtles: Out of the Shadows'
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/999RuhZvog8ocyvcccVV9yGmMjL.jpg
|
||||
- word: Cinderella
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/aUYcExsGuRaw7PLGmAmXubt1dfG.jpg
|
||||
- word: The Big Short
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/jmlMLYEsYY1kRc5qHIyTdxCeVmZ.jpg
|
||||
- word: 'X-Men: Days of Future Past'
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/5LBcSLHAtEIIgvNkA2dPmYH5wR7.jpg
|
||||
- word: Shutter Island
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/fmLWuAfDPaUa3Vi5nO1YUUyZaX6.jpg
|
||||
- word: 'Captain America: The Winter Soldier'
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/4qfXT9BtxeFuamR4F49m2mpKQI1.jpg
|
||||
- word: San Andreas
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/cUfGqafAVQkatQ7N4y08RNV3bgu.jpg
|
||||
- word: The Mummy
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/3qthpSSyBY6Efeu1sqkO8L1Eyyb.jpg
|
||||
- word: Chappie
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/y5lG7TBpeOMG0jxAaTK0ghZSzBJ.jpg
|
||||
- word: Bridge of Spies
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/3amJMLyjx0rDbwhnKNG8d6gzDSV.jpg
|
||||
- word: 'The Lord of the Rings: The Return of the King'
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/8BPZO0Bf8TeAy8znF43z8soK3ys.jpg
|
||||
- word: 'Kill Bill: Vol. 1'
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/kkS8PKa8c134vXsj2fQkNqOaCXU.jpg
|
||||
- word: 'Pirates of the Caribbean: On Stranger Tides'
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/l7zANdjgTvYqwZUx76Vk0EKpCH5.jpg
|
||||
- word: The Nice Guys
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/a7eSkK4bkLwKCXYDdYIqLxrqT2n.jpg
|
||||
- word: Harry Potter and the Chamber of Secrets
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/avqzwKn89VetTEvAlBePt3Us6Al.jpg
|
||||
- word: 'The Lord of the Rings: The Two Towers'
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/dG4BmM32XJmKiwopLDQmvXEhuHB.jpg
|
||||
- word: Titanic
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/2Te2YJoLtT2cHME7i5kDuEwJWZc.jpg
|
||||
- word: "The Huntsman: Winter's War"
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/nQ0UvXdxoMZguLuPj0sdV0U36KR.jpg
|
||||
- word: Thor
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/6UxFfo8K3vcihtUpX1ek2ucGeEZ.jpg
|
||||
- word: Taken 3
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/razvUuLkF7CX4XsLyj02ksC0ayy.jpg
|
||||
- word: Lights Out
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/nQsdGCVTEq78XwIgR6QUVxiNERI.jpg
|
||||
- word: 'Night at the Museum: Secret of the Tomb'
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/6tKleiKS54focE4z0sdtLOIEgK8.jpg
|
||||
- word: Up
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/qMjbMPkSCc1K19zuXNM2BgIsIRz.jpg
|
||||
- word: The Bourne Identity
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/2Fr1vqBiDn8xRJM9elcplzHctTN.jpg
|
||||
- word: Frozen
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/cAhCDpAq80QCeQvHytY9JkBalpH.jpg
|
||||
- word: 'Thor: The Dark World'
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/3FweBee0xZoY77uO1bhUOlQorNH.jpg
|
||||
- word: The Wolf of Wall Street
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/rP36Rx5RQh0rmH2ynEIaG8DxbV2.jpg
|
||||
- word: Resident Evil
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/s41Er80jGJf3tNkgYHxUCttjmwv.jpg
|
||||
- word: Iron Man 3
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/n9X2DKItL3V0yq1q1jrk8z5UAki.jpg
|
||||
- word: Ice Age
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/oDqbewoFuIEWA7UWurole6MzDGn.jpg
|
||||
- word: Central Intelligence
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/zaGmoSackrRF7w6NieQ0FWY0M7k.jpg
|
||||
- word: 'The Mummy: Tomb of the Dragon Emperor'
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/caB8JFUigSHdGsdxOxaK4vZtOiN.jpg
|
||||
- word: The Man from U.N.C.L.E.
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/bKxcCNv2xq8M3GD5iSrv9bMGDVa.jpg
|
||||
- word: Gravity
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/9aoWzwOwy9NLuSk9LkBwwrBdPYM.jpg
|
||||
- word: Ex Machina
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/9X3cDZb4GYGQeOnZHLwMcCFz2Ro.jpg
|
||||
- word: Harry Potter and the Goblet of Fire
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/gzKW3emulMxIHzuXxZoyDB1lei9.jpg
|
||||
- word: Man of Steel
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/jYLh4mdOqkt30i7LTFs3o02UcGF.jpg
|
||||
- word: 'Harry Potter and the Deathly Hallows: Part 1'
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/8YA36faYlkpfp6aozcGsqq68pZ9.jpg
|
||||
- word: Iron Man 2
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/jxdSxqAFrdioKgXwgTs5Qfbazjq.jpg
|
||||
- word: The Angry Birds Movie
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/3mJcfL2lPfRky16EPi95d2YrKqu.jpg
|
||||
- word: Room
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/tBhp8MGaiL3BXpPCSl5xY397sGH.jpg
|
||||
- word: Ted 2
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/nkwoiSVJLeK0NI8kTqioBna61bm.jpg
|
||||
- word: 'Exodus: Gods and Kings'
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/hOOgtrByGgWfqGTTn5VL7jkLYXJ.jpg
|
||||
- word: 'Terminator 2: Judgment Day'
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/d9AqtruwS8nljKjL5aYzM42hQJr.jpg
|
||||
- word: Harry Potter and the Prisoner of Azkaban
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/wWdlIBxn9xCmySxnSWtI2BjZZkF.jpg
|
||||
- word: Genius
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/5eovlgVfijObBm4TtW1QSaj32q3.jpg
|
||||
- word: Inglourious Basterds
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/bk0GylJLneaSbpQZXpgTwleYigq.jpg
|
||||
- word: Hacksaw Ridge
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/zBK4QZONMQXhcgaJv1YYTdCW7q9.jpg
|
||||
- word: Trolls
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/wc1JxADaBLuWhySkaawCBTpixCo.jpg
|
||||
- word: The Shining
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/h4DcDCOkQBENWBJZjNlPv3adQfM.jpg
|
||||
- word: A Walk Among the Tombstones
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/e56QsaJy1weAUukiK2ZmIGVUALF.jpg
|
||||
- word: Dr. No
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/bplDiT5JhaXf9S5arO8g5QsFtDi.jpg
|
||||
- word: 'Mission: Impossible'
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/7CiZuIPCLvhhMICT2PONuwr2BMG.jpg
|
||||
- word: 'The Purge: Anarchy'
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/1sOkQtqmBji7iquGfQlHOrFqplN.jpg
|
||||
- word: 'Maze Runner: The Scorch Trials'
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/iapRFMGKvN9tsjqPlN7MIDTCezG.jpg
|
||||
- word: Jupiter Ascending
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/4liSXBZZdURI0c1Id1zLJo6Z3Gu.jpg
|
||||
- word: Morgan
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/g3XhTkjUxLbzVVa63vuopSNNZE8.jpg
|
||||
- word: Se7en
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/ba4CpvnaxvAgff2jHiaqJrVpZJ5.jpg
|
||||
- word: Charlie and the Chocolate Factory
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/mrRAx1OsNVEKJv0ktQprspieqnS.jpg
|
||||
- word: Self/less
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/fpKyGCOZJsYe2TAKLtziLe6EPj9.jpg
|
||||
- word: The Prestige
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/c5o7FN2vzI7xlU6IF1y64mgcH9E.jpg
|
||||
- word: The Departed
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/8Od5zV7Q7zNOX0y9tyNgpTmoiGA.jpg
|
||||
- word: Monsters, Inc.
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/eKBUYeSgGVvztO2MZxD5YMcz6kv.jpg
|
||||
- word: Raiders of the Lost Ark
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/dU1CArBM4YsKLfG8YvhtuTJJaGR.jpg
|
||||
- word: The Terminator
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/6yFoLNQgFdVbA8TZMdfgVpszOla.jpg
|
||||
- word: The Mummy Returns
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/22SUPrwoHNbMjZci1kRvBmCqrek.jpg
|
||||
- word: Pan
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/6Ym6bgfhvpgQS5Sg8kKnfW1hX7P.jpg
|
||||
- word: Fifty Shades of Grey
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/zw3fM9KYYhYGsIQUJOyQNbeZSnn.jpg
|
||||
- word: Casino Royale
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/xq6hXdBpDPIXWjtmvbFmtLvBFJt.jpg
|
||||
- word: Free State of Jones
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/zgo0s1fmBCWUweNrCVIK1dZEOJ6.jpg
|
||||
- word: Despicable Me
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/yo1ef57MEPkEE4BDZKTZGH9uDcX.jpg
|
||||
- word: Creed
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/nF4kmc4gDRQU4OJiJgk6sZtbJbl.jpg
|
||||
- word: Seventh Son
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/lNnrr7OR7dkqfgIyju8nUJHcf8x.jpg
|
||||
- word: The Hunger Games
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/1LTLrl06uII4w2BTpnQnmWwrKi.jpg
|
||||
- word: Saving Private Ryan
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/gRtLcCQOpYUI9ThdVzi4VUP8QO3.jpg
|
||||
- word: 'Harry Potter and the Deathly Hallows: Part 2'
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/6n0DAcyjTHS6888mt8U9ZsLy9nR.jpg
|
||||
- word: 12 Years a Slave
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/xnRPoFI7wzOYviw3PmoG94X2Lnc.jpg
|
||||
- word: Dracula Untold
|
||||
imageUrl: https://image.tmdb.org/t/p/w300_and_h450_bestv2/6UPlIYKxZqUR6Xbpgu1JKG0J7UC.jpg
|
380
src/Ellie/data/hangman/things.yml
Normal file
|
@ -0,0 +1,380 @@
|
|||
- word: apple
|
||||
imageUrl: https://www.randomlists.com/img/things/apple.jpg.jpg
|
||||
- word: bag
|
||||
imageUrl: https://www.randomlists.com/img/things/bag.jpg.jpg
|
||||
- word: balloon
|
||||
imageUrl: https://www.randomlists.com/img/things/balloon.jpg.jpg
|
||||
- word: bananas
|
||||
imageUrl: https://www.randomlists.com/img/things/bananas.jpg.jpg
|
||||
- word: bed
|
||||
imageUrl: https://www.randomlists.com/img/things/bed.jpg.jpg
|
||||
- word: beef
|
||||
imageUrl: https://www.randomlists.com/img/things/beef.jpg.jpg
|
||||
- word: blouse
|
||||
imageUrl: https://www.randomlists.com/img/things/blouse.jpg.jpg
|
||||
- word: book
|
||||
imageUrl: https://www.randomlists.com/img/things/book.jpg.jpg
|
||||
- word: bookmark
|
||||
imageUrl: https://www.randomlists.com/img/things/bookmark.jpg.jpg
|
||||
- word: boom box
|
||||
imageUrl: https://www.randomlists.com/img/things/boom_box.jpg.jpg
|
||||
- word: bottle
|
||||
imageUrl: https://www.randomlists.com/img/things/bottle.jpg.jpg
|
||||
- word: bottle cap
|
||||
imageUrl: https://www.randomlists.com/img/things/bottle_cap.jpg
|
||||
- word: bow
|
||||
imageUrl: https://www.randomlists.com/img/things/bow.jpg
|
||||
- word: bowl
|
||||
imageUrl: https://www.randomlists.com/img/things/bowl.jpg
|
||||
- word: box
|
||||
imageUrl: https://www.randomlists.com/img/things/box.jpg
|
||||
- word: bracelet
|
||||
imageUrl: https://www.randomlists.com/img/things/bracelet.jpg
|
||||
- word: bread
|
||||
imageUrl: https://www.randomlists.com/img/things/bread.jpg
|
||||
- word: broccoli
|
||||
imageUrl: https://www.randomlists.com/img/things/brocolli.jpg
|
||||
- word: hair brush
|
||||
imageUrl: https://www.randomlists.com/img/things/hair_brush.jpg
|
||||
- word: buckle
|
||||
imageUrl: https://www.randomlists.com/img/things/buckel.jpg
|
||||
- word: button
|
||||
imageUrl: https://www.randomlists.com/img/things/button.jpg
|
||||
- word: camera
|
||||
imageUrl: https://www.randomlists.com/img/things/camera.jpg
|
||||
- word: candle
|
||||
imageUrl: https://www.randomlists.com/img/things/candle.jpg
|
||||
- word: candy wrapper
|
||||
imageUrl: https://www.randomlists.com/img/things/candy_wrapper.jpg
|
||||
- word: canvas
|
||||
imageUrl: https://www.randomlists.com/img/things/canvas.jpg
|
||||
- word: car
|
||||
imageUrl: https://www.randomlists.com/img/things/car.jpg
|
||||
- word: greeting card
|
||||
imageUrl: https://www.randomlists.com/img/things/greeting_card.jpg
|
||||
- word: playing card
|
||||
imageUrl: https://www.randomlists.com/img/things/playing_card.jpg
|
||||
- word: carrots
|
||||
imageUrl: https://www.randomlists.com/img/things/carrots.jpg
|
||||
- word: cat
|
||||
imageUrl: https://www.randomlists.com/img/things/cat.jpg
|
||||
- word: CD
|
||||
imageUrl: https://www.randomlists.com/img/things/CD.jpg
|
||||
- word: cell phone
|
||||
imageUrl: https://www.randomlists.com/img/things/cell_phone.jpg
|
||||
- word: packing peanuts
|
||||
imageUrl: https://www.randomlists.com/img/things/packing_peanuts.jpg
|
||||
- word: cinder block
|
||||
imageUrl: https://www.randomlists.com/img/things/cinder_block.jpg
|
||||
- word: chair
|
||||
imageUrl: https://www.randomlists.com/img/things/chair.jpg
|
||||
- word: chalk
|
||||
imageUrl: https://www.randomlists.com/img/things/chalk.jpg
|
||||
- word: newspaper
|
||||
imageUrl: https://www.randomlists.com/img/things/newspaper.jpg
|
||||
- word: soy sauce packet
|
||||
imageUrl: https://www.randomlists.com/img/things/soy_sauce_packet.jpg
|
||||
- word: chapter book
|
||||
imageUrl: https://www.randomlists.com/img/things/chapter_book.jpg
|
||||
- word: checkbook
|
||||
imageUrl: https://www.randomlists.com/img/things/checkbook.jpg
|
||||
- word: chocolate
|
||||
imageUrl: https://www.randomlists.com/img/things/chocolate.jpg
|
||||
- word: clay pot
|
||||
imageUrl: https://www.randomlists.com/img/things/clay_pot.jpg
|
||||
- word: clock
|
||||
imageUrl: https://www.randomlists.com/img/things/clock.jpg
|
||||
- word: clothes
|
||||
imageUrl: https://www.randomlists.com/img/things/clothes.jpg
|
||||
- word: computer
|
||||
imageUrl: https://www.randomlists.com/img/things/computer.jpg
|
||||
- word: conditioner
|
||||
imageUrl: https://www.randomlists.com/img/things/conditioner.jpg
|
||||
- word: cookie jar
|
||||
imageUrl: https://www.randomlists.com/img/things/cookie_jar.jpg
|
||||
- word: cork
|
||||
imageUrl: https://www.randomlists.com/img/things/cork.jpg
|
||||
- word: couch
|
||||
imageUrl: https://www.randomlists.com/img/things/couch.jpg
|
||||
- word: credit card
|
||||
imageUrl: https://www.randomlists.com/img/things/credit_card.jpg
|
||||
- word: cup
|
||||
imageUrl: https://www.randomlists.com/img/things/cup.jpg
|
||||
- word: deodorant
|
||||
imageUrl: https://www.randomlists.com/img/things/deodorant_.jpg
|
||||
- word: desk
|
||||
imageUrl: https://www.randomlists.com/img/things/desk.jpg
|
||||
- word: door
|
||||
imageUrl: https://www.randomlists.com/img/things/door.jpg
|
||||
- word: drawer
|
||||
imageUrl: https://www.randomlists.com/img/things/drawer.jpg
|
||||
- word: drill press
|
||||
imageUrl: https://www.randomlists.com/img/things/drill_press.jpg
|
||||
- word: eraser
|
||||
imageUrl: https://www.randomlists.com/img/things/earser.jpg
|
||||
- word: eye liner
|
||||
imageUrl: https://www.randomlists.com/img/things/eye_liner.jpg
|
||||
- word: face wash
|
||||
imageUrl: https://www.randomlists.com/img/things/face_wash.jpg
|
||||
- word: fake flowers
|
||||
imageUrl: https://www.randomlists.com/img/things/fake_flowers.jpg
|
||||
- word: flag
|
||||
imageUrl: https://www.randomlists.com/img/things/flag.jpg
|
||||
- word: floor
|
||||
imageUrl: https://www.randomlists.com/img/things/floor.jpg
|
||||
- word: flowers
|
||||
imageUrl: https://www.randomlists.com/img/things/flowers.jpg
|
||||
- word: food
|
||||
imageUrl: https://www.randomlists.com/img/things/food.jpg
|
||||
- word: fork
|
||||
imageUrl: https://www.randomlists.com/img/things/fork.jpg
|
||||
- word: fridge
|
||||
imageUrl: https://www.randomlists.com/img/things/fridge.jpg
|
||||
- word: glass
|
||||
imageUrl: https://www.randomlists.com/img/things/glass.jpg
|
||||
- word: glasses
|
||||
imageUrl: https://www.randomlists.com/img/things/glasses.jpg
|
||||
- word: glow stick
|
||||
imageUrl: https://www.randomlists.com/img/things/glow_stick.jpg
|
||||
- word: grid paper
|
||||
imageUrl: https://www.randomlists.com/img/things/grid_paper.jpg
|
||||
- word: hair tie
|
||||
imageUrl: https://www.randomlists.com/img/things/hair_tie.jpg
|
||||
- word: hanger
|
||||
imageUrl: https://www.randomlists.com/img/things/hanger.jpg
|
||||
- word: helmet
|
||||
imageUrl: https://www.randomlists.com/img/things/helmet.jpg
|
||||
- word: house
|
||||
imageUrl: https://www.randomlists.com/img/things/house.jpg
|
||||
- word: ipod
|
||||
imageUrl: https://www.randomlists.com/img/things/ipod.jpg
|
||||
- word: charger
|
||||
imageUrl: https://www.randomlists.com/img/things/charger.jpg
|
||||
- word: key chain
|
||||
imageUrl: https://www.randomlists.com/img/things/key_chain.jpg
|
||||
- word: keyboard
|
||||
imageUrl: https://www.randomlists.com/img/things/keyboard.jpg
|
||||
- word: keys
|
||||
imageUrl: https://www.randomlists.com/img/things/keys.jpg
|
||||
- word: knife
|
||||
imageUrl: https://www.randomlists.com/img/things/knife.jpg
|
||||
- word: lace
|
||||
imageUrl: https://www.randomlists.com/img/things/lace.jpg
|
||||
- word: lamp
|
||||
imageUrl: https://www.randomlists.com/img/things/lamp.jpg
|
||||
- word: lamp shade
|
||||
imageUrl: https://www.randomlists.com/img/things/lamp_shade.jpg
|
||||
- word: leg warmers
|
||||
imageUrl: https://www.randomlists.com/img/things/leg_warmers.jpg
|
||||
- word: lip gloss
|
||||
imageUrl: https://www.randomlists.com/img/things/lip_gloss.jpg
|
||||
- word: lotion
|
||||
imageUrl: https://www.randomlists.com/img/things/lotion.jpg
|
||||
- word: milk
|
||||
imageUrl: https://www.randomlists.com/img/things/milk.jpg
|
||||
- word: mirror
|
||||
imageUrl: https://www.randomlists.com/img/things/mirror.jpg
|
||||
- word: model car
|
||||
imageUrl: https://www.randomlists.com/img/things/model_car.jpg
|
||||
- word: money
|
||||
imageUrl: https://www.randomlists.com/img/things/money.jpg
|
||||
- word: monitor
|
||||
imageUrl: https://www.randomlists.com/img/things/monitor.jpg
|
||||
- word: mop
|
||||
imageUrl: https://www.randomlists.com/img/things/mop.jpg
|
||||
- word: mouse pad
|
||||
imageUrl: https://www.randomlists.com/img/things/mouse_pad.jpg
|
||||
- word: mp3 player
|
||||
imageUrl: https://www.randomlists.com/img/things/mp3_player.jpg
|
||||
- word: nail clippers
|
||||
imageUrl: https://www.randomlists.com/img/things/nail_clippers.jpg
|
||||
- word: nail file
|
||||
imageUrl: https://www.randomlists.com/img/things/nail_file.jpg
|
||||
- word: needle
|
||||
imageUrl: https://www.randomlists.com/img/things/needle.jpg
|
||||
- word: outlet
|
||||
imageUrl: https://www.randomlists.com/img/things/outlet.jpg
|
||||
- word: paint brush
|
||||
imageUrl: https://www.randomlists.com/img/things/paint_brush.jpg
|
||||
- word: pants
|
||||
imageUrl: https://www.randomlists.com/img/things/pants.jpg
|
||||
- word: paper
|
||||
imageUrl: https://www.randomlists.com/img/things/paper.jpg
|
||||
- word: pen
|
||||
imageUrl: https://www.randomlists.com/img/things/pen.jpg
|
||||
- word: pencil
|
||||
imageUrl: https://www.randomlists.com/img/things/pencil.jpg
|
||||
- word: perfume
|
||||
imageUrl: https://www.randomlists.com/img/things/perfume.jpg
|
||||
- word: phone
|
||||
imageUrl: https://www.randomlists.com/img/things/phone.jpg
|
||||
- word: photo album
|
||||
imageUrl: https://www.randomlists.com/img/things/photo_album.jpg
|
||||
- word: picture frame
|
||||
imageUrl: https://www.randomlists.com/img/things/picture_frame.jpg
|
||||
- word: pillow
|
||||
imageUrl: https://www.randomlists.com/img/things/pillow.jpg
|
||||
- word: plastic fork
|
||||
imageUrl: https://www.randomlists.com/img/things/plastic_fork.jpg
|
||||
- word: plate
|
||||
imageUrl: https://www.randomlists.com/img/things/plate.jpg
|
||||
- word: pool stick
|
||||
imageUrl: https://www.randomlists.com/img/things/pool_stick.jpg
|
||||
- word: soda can
|
||||
imageUrl: https://www.randomlists.com/img/things/soda_can.jpg
|
||||
- word: puddle
|
||||
imageUrl: https://www.randomlists.com/img/things/puddle.jpg
|
||||
- word: purse
|
||||
imageUrl: https://www.randomlists.com/img/things/purse.jpg
|
||||
- word: blanket
|
||||
imageUrl: https://www.randomlists.com/img/things/blanket.jpg
|
||||
- word: radio
|
||||
imageUrl: https://www.randomlists.com/img/things/radio.jpg
|
||||
- word: remote
|
||||
imageUrl: https://www.randomlists.com/img/things/remote.jpg
|
||||
- word: ring
|
||||
imageUrl: https://www.randomlists.com/img/things/ring.jpg
|
||||
- word: rubber band
|
||||
imageUrl: https://www.randomlists.com/img/things/rubber_band.jpg
|
||||
- word: rubber duck
|
||||
imageUrl: https://www.randomlists.com/img/things/rubber_duck.jpg
|
||||
- word: rug
|
||||
imageUrl: https://www.randomlists.com/img/things/rug.jpg
|
||||
- word: rusty nail
|
||||
imageUrl: https://www.randomlists.com/img/things/rusty_nail.jpg
|
||||
- word: sailboat
|
||||
imageUrl: https://www.randomlists.com/img/things/sailboat.jpg
|
||||
- word: sand paper
|
||||
imageUrl: https://www.randomlists.com/img/things/sand_paper.jpg
|
||||
- word: sandal
|
||||
imageUrl: https://www.randomlists.com/img/things/sandal.jpg
|
||||
- word: scotch tape
|
||||
imageUrl: https://www.randomlists.com/img/things/scotch_tape.jpg
|
||||
- word: screw
|
||||
imageUrl: https://www.randomlists.com/img/things/screw.jpg
|
||||
- word: seat belt
|
||||
imageUrl: https://www.randomlists.com/img/things/seat_belt.jpg
|
||||
- word: shampoo
|
||||
imageUrl: https://www.randomlists.com/img/things/shampoo.jpg
|
||||
- word: sharpie
|
||||
imageUrl: https://www.randomlists.com/img/things/sharpie.jpg
|
||||
- word: shawl
|
||||
imageUrl: https://www.randomlists.com/img/things/shawl.jpg
|
||||
- word: shirt
|
||||
imageUrl: https://www.randomlists.com/img/things/shirt.jpg
|
||||
- word: shoe lace
|
||||
imageUrl: https://www.randomlists.com/img/things/shoe_lace.jpg
|
||||
- word: shoes
|
||||
imageUrl: https://www.randomlists.com/img/things/shoes.jpg
|
||||
- word: shovel
|
||||
imageUrl: https://www.randomlists.com/img/things/shovel.jpg
|
||||
- word: sidewalk
|
||||
imageUrl: https://www.randomlists.com/img/things/sidewalk.jpg
|
||||
- word: sketch pad
|
||||
imageUrl: https://www.randomlists.com/img/things/sketch_pad.jpg
|
||||
- word: slipper
|
||||
imageUrl: https://www.randomlists.com/img/things/slipper.jpg
|
||||
- word: soap
|
||||
imageUrl: https://www.randomlists.com/img/things/soap.jpg
|
||||
- word: socks
|
||||
imageUrl: https://www.randomlists.com/img/things/socks.jpg
|
||||
- word: sofa
|
||||
imageUrl: https://www.randomlists.com/img/things/sofa.jpg
|
||||
- word: speakers
|
||||
imageUrl: https://www.randomlists.com/img/things/speakers.jpg
|
||||
- word: sponge
|
||||
imageUrl: https://www.randomlists.com/img/things/sponge.jpg
|
||||
- word: spoon
|
||||
imageUrl: https://www.randomlists.com/img/things/spoon.jpg
|
||||
- word: spring
|
||||
imageUrl: https://www.randomlists.com/img/things/spring.jpg
|
||||
- word: sticky note
|
||||
imageUrl: https://www.randomlists.com/img/things/sticky_note.jpg
|
||||
- word: stockings
|
||||
imageUrl: https://www.randomlists.com/img/things/stockings.jpg
|
||||
- word: stop sign
|
||||
imageUrl: https://www.randomlists.com/img/things/stop_sign.jpg
|
||||
- word: street lights
|
||||
imageUrl: https://www.randomlists.com/img/things/street_lights.jpg
|
||||
- word: sun glasses
|
||||
imageUrl: https://www.randomlists.com/img/things/sun_glasses.jpg
|
||||
- word: table
|
||||
imageUrl: https://www.randomlists.com/img/things/table.jpg
|
||||
- word: teddies
|
||||
imageUrl: https://www.randomlists.com/img/things/teddies.jpg
|
||||
- word: television
|
||||
imageUrl: https://www.randomlists.com/img/things/television.jpg
|
||||
- word: thermometer
|
||||
imageUrl: https://www.randomlists.com/img/things/thermometer.jpg
|
||||
- word: thread
|
||||
imageUrl: https://www.randomlists.com/img/things/thread.jpg
|
||||
- word: tire swing
|
||||
imageUrl: https://www.randomlists.com/img/things/tire_swing.jpg
|
||||
- word: tissue box
|
||||
imageUrl: https://www.randomlists.com/img/things/tissue_box.jpg
|
||||
- word: toe ring
|
||||
imageUrl: https://www.randomlists.com/img/things/toe_ring.jpg
|
||||
- word: toilet
|
||||
imageUrl: https://www.randomlists.com/img/things/toilet.jpg
|
||||
- word: tomato
|
||||
imageUrl: https://www.randomlists.com/img/things/tomato.jpg
|
||||
- word: tooth picks
|
||||
imageUrl: https://www.randomlists.com/img/things/tooth_picks.jpg
|
||||
- word: toothbrush
|
||||
imageUrl: https://www.randomlists.com/img/things/toothbrush.jpg
|
||||
- word: toothpaste
|
||||
imageUrl: https://www.randomlists.com/img/things/toothpaste.jpg
|
||||
- word: towel
|
||||
imageUrl: https://www.randomlists.com/img/things/towel.jpg
|
||||
- word: tree
|
||||
imageUrl: https://www.randomlists.com/img/things/tree.jpg
|
||||
- word: truck
|
||||
imageUrl: https://www.randomlists.com/img/things/truck.jpg
|
||||
- word: tv
|
||||
imageUrl: https://www.randomlists.com/img/things/tv.jpg
|
||||
- word: tweezers
|
||||
imageUrl: https://www.randomlists.com/img/things/twezzers.jpg
|
||||
- word: twister
|
||||
imageUrl: https://www.randomlists.com/img/things/twister.jpg
|
||||
- word: vase
|
||||
imageUrl: https://www.randomlists.com/img/things/vase.jpg
|
||||
- word: video games
|
||||
imageUrl: https://www.randomlists.com/img/things/video_games.jpg
|
||||
- word: wallet
|
||||
imageUrl: https://www.randomlists.com/img/things/wallet.jpg
|
||||
- word: washing machine
|
||||
imageUrl: https://www.randomlists.com/img/things/washing_machine.jpg
|
||||
- word: watch
|
||||
imageUrl: https://www.randomlists.com/img/things/watch.jpg
|
||||
- word: water bottle
|
||||
imageUrl: https://www.randomlists.com/img/things/water_bottle.jpg
|
||||
- word: doll
|
||||
imageUrl: https://www.randomlists.com/img/things/doll.jpg
|
||||
- word: magnet
|
||||
imageUrl: https://www.randomlists.com/img/things/magnet.jpg
|
||||
- word: wagon
|
||||
imageUrl: https://www.randomlists.com/img/things/wagon.jpg
|
||||
- word: headphones
|
||||
imageUrl: https://www.randomlists.com/img/things/headphones.jpg
|
||||
- word: clamp
|
||||
imageUrl: https://www.randomlists.com/img/things/clamp.jpg
|
||||
- word: USB drive
|
||||
imageUrl: https://www.randomlists.com/img/things/USB_drive.jpg
|
||||
- word: air freshener
|
||||
imageUrl: https://www.randomlists.com/img/things/air_freshener.jpg
|
||||
- word: piano
|
||||
imageUrl: https://www.randomlists.com/img/things/piano.jpg
|
||||
- word: ice cube tray
|
||||
imageUrl: https://www.randomlists.com/img/things/ice_cube_tray.jpg
|
||||
- word: white out
|
||||
imageUrl: https://www.randomlists.com/img/things/white_out.jpg
|
||||
- word: window
|
||||
imageUrl: https://www.randomlists.com/img/things/window.jpg
|
||||
- word: controller
|
||||
imageUrl: https://www.randomlists.com/img/things/controller.jpg
|
||||
- word: coasters
|
||||
imageUrl: https://www.randomlists.com/img/things/coasters.jpg
|
||||
- word: thermostat
|
||||
imageUrl: https://www.randomlists.com/img/things/thermostat.jpg
|
||||
- word: zipper
|
||||
imageUrl: https://www.randomlists.com/img/things/zipper.jpg
|
39
src/Ellie/data/images.yml
Normal file
|
@ -0,0 +1,39 @@
|
|||
# DO NOT CHANGE
|
||||
version: 4
|
||||
coins:
|
||||
heads:
|
||||
- https://cdn.nadeko.bot/coins/heads3.png
|
||||
tails:
|
||||
- https://cdn.nadeko.bot/coins/tails3.png
|
||||
currency:
|
||||
- https://cdn.nadeko.bot/other/currency/0.jpg
|
||||
- https://cdn.nadeko.bot/other/currency/1.jpg
|
||||
- https://cdn.nadeko.bot/other/currency/2.jpg
|
||||
dice:
|
||||
- https://cdn.nadeko.bot/other/dice/0.png
|
||||
- https://cdn.nadeko.bot/other/dice/1.png
|
||||
- https://cdn.nadeko.bot/other/dice/2.png
|
||||
- https://cdn.nadeko.bot/other/dice/3.png
|
||||
- https://cdn.nadeko.bot/other/dice/4.png
|
||||
- https://cdn.nadeko.bot/other/dice/5.png
|
||||
- https://cdn.nadeko.bot/other/dice/6.png
|
||||
- https://cdn.nadeko.bot/other/dice/7.png
|
||||
- https://cdn.nadeko.bot/other/dice/8.png
|
||||
- https://cdn.nadeko.bot/other/dice/9.png
|
||||
rategirl:
|
||||
matrix: https://cdn.nadeko.bot/other/rategirl/matrix.png
|
||||
dot: https://cdn.nadeko.bot/other/rategirl/dot.png
|
||||
xp:
|
||||
bg: https://cdn.nadeko.bot/other/xp/bg_k.png
|
||||
rip:
|
||||
bg: https://cdn.nadeko.bot/other/rip/rip.png
|
||||
overlay: https://cdn.nadeko.bot/other/rip/overlay.png
|
||||
slots:
|
||||
emojis:
|
||||
- https://cdn.nadeko.bot/slots/0.png
|
||||
- https://cdn.nadeko.bot/slots/1.png
|
||||
- https://cdn.nadeko.bot/slots/2.png
|
||||
- https://cdn.nadeko.bot/slots/3.png
|
||||
- https://cdn.nadeko.bot/slots/4.png
|
||||
- https://cdn.nadeko.bot/slots/5.png
|
||||
bg: https://cdn.nadeko.bot/slots/slots_bg.png
|
BIN
src/Ellie/data/images/cards/ace_of_clubs.jpg
Normal file
After Width: | Height: | Size: 3.7 KiB |
BIN
src/Ellie/data/images/cards/ace_of_diamonds.jpg
Normal file
After Width: | Height: | Size: 3.9 KiB |
BIN
src/Ellie/data/images/cards/ace_of_hearts.jpg
Normal file
After Width: | Height: | Size: 4.2 KiB |
BIN
src/Ellie/data/images/cards/ace_of_spades.jpg
Normal file
After Width: | Height: | Size: 4.7 KiB |
BIN
src/Ellie/data/images/cards/black_joker.jpg
Normal file
After Width: | Height: | Size: 5.5 KiB |
BIN
src/Ellie/data/images/cards/eight_of_clubs.jpg
Normal file
After Width: | Height: | Size: 6.3 KiB |
BIN
src/Ellie/data/images/cards/eight_of_diamonds.jpg
Normal file
After Width: | Height: | Size: 6.5 KiB |
BIN
src/Ellie/data/images/cards/eight_of_hearts.jpg
Normal file
After Width: | Height: | Size: 7 KiB |
BIN
src/Ellie/data/images/cards/eight_of_spades.jpg
Normal file
After Width: | Height: | Size: 6 KiB |
BIN
src/Ellie/data/images/cards/five_of_clubs.jpg
Normal file
After Width: | Height: | Size: 5.1 KiB |
BIN
src/Ellie/data/images/cards/five_of_diamonds.jpg
Normal file
After Width: | Height: | Size: 5.4 KiB |
BIN
src/Ellie/data/images/cards/five_of_hearts.jpg
Normal file
After Width: | Height: | Size: 5.5 KiB |
BIN
src/Ellie/data/images/cards/five_of_spades.jpg
Normal file
After Width: | Height: | Size: 4.8 KiB |
BIN
src/Ellie/data/images/cards/four_of_clubs.jpg
Normal file
After Width: | Height: | Size: 4.5 KiB |
BIN
src/Ellie/data/images/cards/four_of_diamonds.jpg
Normal file
After Width: | Height: | Size: 4.8 KiB |
BIN
src/Ellie/data/images/cards/four_of_hearts.jpg
Normal file
After Width: | Height: | Size: 5 KiB |
BIN
src/Ellie/data/images/cards/four_of_spades.jpg
Normal file
After Width: | Height: | Size: 4.3 KiB |
BIN
src/Ellie/data/images/cards/jack_of_clubs.jpg
Normal file
After Width: | Height: | Size: 9.2 KiB |
BIN
src/Ellie/data/images/cards/jack_of_diamonds.jpg
Normal file
After Width: | Height: | Size: 9.5 KiB |
BIN
src/Ellie/data/images/cards/jack_of_hearts.jpg
Normal file
After Width: | Height: | Size: 9.3 KiB |
BIN
src/Ellie/data/images/cards/jack_of_spades.jpg
Normal file
After Width: | Height: | Size: 8.9 KiB |
BIN
src/Ellie/data/images/cards/king_of_clubs.jpg
Normal file
After Width: | Height: | Size: 9.1 KiB |
BIN
src/Ellie/data/images/cards/king_of_diamonds.jpg
Normal file
After Width: | Height: | Size: 9.2 KiB |
BIN
src/Ellie/data/images/cards/king_of_hearts.jpg
Normal file
After Width: | Height: | Size: 9.3 KiB |
BIN
src/Ellie/data/images/cards/king_of_spades.jpg
Normal file
After Width: | Height: | Size: 9 KiB |
BIN
src/Ellie/data/images/cards/nine_of_clubs.jpg
Normal file
After Width: | Height: | Size: 6.9 KiB |
BIN
src/Ellie/data/images/cards/nine_of_diamonds.jpg
Normal file
After Width: | Height: | Size: 7 KiB |
BIN
src/Ellie/data/images/cards/nine_of_hearts.jpg
Normal file
After Width: | Height: | Size: 7.3 KiB |
BIN
src/Ellie/data/images/cards/nine_of_spades.jpg
Normal file
After Width: | Height: | Size: 6.4 KiB |
BIN
src/Ellie/data/images/cards/queen_of_clubs.jpg
Normal file
After Width: | Height: | Size: 9.3 KiB |
BIN
src/Ellie/data/images/cards/queen_of_diamonds.jpg
Normal file
After Width: | Height: | Size: 9.6 KiB |
BIN
src/Ellie/data/images/cards/queen_of_hearts.jpg
Normal file
After Width: | Height: | Size: 9.3 KiB |
BIN
src/Ellie/data/images/cards/queen_of_spades.jpg
Normal file
After Width: | Height: | Size: 9.4 KiB |
BIN
src/Ellie/data/images/cards/red_joker.jpg
Normal file
After Width: | Height: | Size: 5.6 KiB |
BIN
src/Ellie/data/images/cards/seven_of_clubs.jpg
Normal file
After Width: | Height: | Size: 5.8 KiB |
BIN
src/Ellie/data/images/cards/seven_of_diamonds.jpg
Normal file
After Width: | Height: | Size: 6.1 KiB |
BIN
src/Ellie/data/images/cards/seven_of_hearts.jpg
Normal file
After Width: | Height: | Size: 6.5 KiB |
BIN
src/Ellie/data/images/cards/seven_of_spades.jpg
Normal file
After Width: | Height: | Size: 5.7 KiB |
BIN
src/Ellie/data/images/cards/six_of_clubs.jpg
Normal file
After Width: | Height: | Size: 5.6 KiB |
BIN
src/Ellie/data/images/cards/six_of_diamonds.jpg
Normal file
After Width: | Height: | Size: 6 KiB |
BIN
src/Ellie/data/images/cards/six_of_hearts.jpg
Normal file
After Width: | Height: | Size: 6.3 KiB |
BIN
src/Ellie/data/images/cards/six_of_spades.jpg
Normal file
After Width: | Height: | Size: 5.4 KiB |
BIN
src/Ellie/data/images/cards/ten_of_clubs.jpg
Normal file
After Width: | Height: | Size: 7.2 KiB |
BIN
src/Ellie/data/images/cards/ten_of_diamonds.jpg
Normal file
After Width: | Height: | Size: 7.3 KiB |
BIN
src/Ellie/data/images/cards/ten_of_hearts.jpg
Normal file
After Width: | Height: | Size: 7.6 KiB |
BIN
src/Ellie/data/images/cards/ten_of_spades.jpg
Normal file
After Width: | Height: | Size: 6.7 KiB |
BIN
src/Ellie/data/images/cards/three_of_clubs.jpg
Normal file
After Width: | Height: | Size: 4 KiB |
BIN
src/Ellie/data/images/cards/three_of_diamonds.jpg
Normal file
After Width: | Height: | Size: 4.2 KiB |
BIN
src/Ellie/data/images/cards/three_of_hearts.jpg
Normal file
After Width: | Height: | Size: 4.6 KiB |
BIN
src/Ellie/data/images/cards/three_of_spades.jpg
Normal file
After Width: | Height: | Size: 3.8 KiB |
BIN
src/Ellie/data/images/cards/two_of_clubs.jpg
Normal file
After Width: | Height: | Size: 3.4 KiB |
BIN
src/Ellie/data/images/cards/two_of_diamonds.jpg
Normal file
After Width: | Height: | Size: 3.7 KiB |
BIN
src/Ellie/data/images/cards/two_of_hearts.jpg
Normal file
After Width: | Height: | Size: 3.9 KiB |
BIN
src/Ellie/data/images/cards/two_of_spades.jpg
Normal file
After Width: | Height: | Size: 3.2 KiB |
BIN
src/Ellie/data/images/frame_gold.png
Normal file
After Width: | Height: | Size: 49 KiB |
BIN
src/Ellie/data/images/frame_silver.png
Normal file
After Width: | Height: | Size: 13 KiB |
BIN
src/Ellie/data/lib/libopus.so
Normal file
BIN
src/Ellie/data/lib/libsodium.dll
Normal file
BIN
src/Ellie/data/lib/libsodium.so
Normal file
BIN
src/Ellie/data/lib/opus.dll
Normal file
314
src/Ellie/data/magicitems.json
Normal file
|
@ -0,0 +1,314 @@
|
|||
[
|
||||
{
|
||||
"Name": "Ace of Spades",
|
||||
"Description": "An ace of spades from a standard card deck. No matter where you store it on your body, you will always be able to find it in your right sleeve afterwards."
|
||||
},
|
||||
{
|
||||
"Name": "Arrow of Euarere",
|
||||
"Description": "A silver arrow, suspended on a string. It always points to the person holding the string."
|
||||
},
|
||||
{
|
||||
"Name": "Amulet of Extra Amulet Slot",
|
||||
"Description": "This amulet allows you to gain the benefit from two magical amulets rather than one. It cannot be further enchanted."
|
||||
},
|
||||
{
|
||||
"Name": "Amulet of Feather Fall",
|
||||
"Description": "When worn, this amulet turns into a feather and falls to the ground."
|
||||
},
|
||||
{
|
||||
"Name": "Anti-Matches",
|
||||
"Description": "A box of matches. Striking one will make it begin to drip water from the tip while the match shrivels away. The amount of water a match releases is about enough to fill a tablespoon."
|
||||
},
|
||||
{
|
||||
"Name": "The Artist's Bludgeon",
|
||||
"Description": "Inanimate objects hit with this bludgeon will receive no damage; they will however change color."
|
||||
},
|
||||
{
|
||||
"Name": "Attentive Guardsman's Pike",
|
||||
"Description": "These ornate and deadly-looking ceremonial pikes are reach weapons and appear to weigh at least 20 lbs, not counting the weight of the fluttering banners that can be unfurled for parade use. Constructed of shadowstuff, they weigh one pound, and inflict only a single point of damage on an attack, being almost entirely for show, although they also have the unique property of remaining in place when set (although unable to support more than 20 lbs), allowing a 'resting his eyes' guardsman to prop it up and leave it standing under its own power, while his hand sags off of it."
|
||||
},
|
||||
{
|
||||
"Name": "Attentive Guardsman's Tabard",
|
||||
"Description": "A dozen of these tabards were fashioned for palace guardsmen in the Empire of Sard, 250 miles from the nearest enemy. The bearer is placed under a glamour that causes him to appear alert and awake, even if his eyes are closed and he is snoring lightly."
|
||||
},
|
||||
{
|
||||
"Name": "Axe of Big Numbers",
|
||||
"Description": "This axe shouts \"Big numbers baby, come on!\" whenever it is swung, but always deals 1 damage or less."
|
||||
},
|
||||
{
|
||||
"Name": "Axe of Empathy",
|
||||
"Description": "Every time you hit something with this +5 greataxe, you get dealt an equal amount of damage. Both you and the thing you hit are then healed the amount of damage dealt by the axe, even if either are dead. The Axe hopes you have learned your lesson."
|
||||
},
|
||||
{
|
||||
"Name": "Axe of Pain",
|
||||
"Description": "The axe is always moaning and groaning with pain."
|
||||
},
|
||||
{
|
||||
"Name": "Baby Oil",
|
||||
"Description": "An aphrodisiac made from the finest mashed babies. Strangely unpopular in the upper planes, the judgmental prudes."
|
||||
},
|
||||
{
|
||||
"Name": "Bag of Faerie Gold",
|
||||
"Description": "This sack appears to be full of gold coins and jewels. When one attempts to spend them, however, the glamour on them soon vanishes, revealing them to be nothing but leaves and pebbles. Obviously, most shopkeepers will not be happy about this, and no amount of 'we didn't know, I swear!' will change their mind."
|
||||
},
|
||||
{
|
||||
"Name": "Bag of Holding",
|
||||
"Description": "This item functions as a normal backpack, however when attempting to retrieve an item, a calm female voice tells them there is a wait time of 4d10 minutes before they can retrieve their item (actual time is stated time plus 6d6 additional minutes). During this wait, the bag plays either annoying muzak or advertisements for the bag's creator's other products/services. Upon attempting to retrieve an item, there is a chance that the wrong item is retrieved, or that the intended item is simply missing. Obtaining the original item requires an additional 4d10+6d6 minutes and has only a 5% chance of success."
|
||||
},
|
||||
{
|
||||
"Name": "Bag of Holding (Alternate)",
|
||||
"Description": "This sack needs a hug!"
|
||||
},
|
||||
{
|
||||
"Name": "Bag of Trading",
|
||||
"Description": "You can take one thing out of the bag for each object you put in the bag. However, you have no control over what you get, and there are no trade-backs. Past research seems to imply there's some sort of correlation to what gets you what, but it's extremely convoluted and far from understood."
|
||||
},
|
||||
{
|
||||
"Name": "Bag of Trick",
|
||||
"Description": "This bag operates like a Bag of Tricks, except it only works once a week and produces a rat each time itis used."
|
||||
},
|
||||
{
|
||||
"Name": "Bag of Unholding",
|
||||
"Description": "Quite a large backpack but even the smallest item doesn't fit."
|
||||
},
|
||||
{
|
||||
"Name": "Bagpipe of Stealth",
|
||||
"Description": "Grants the user invisibility as long as it is being played."
|
||||
},
|
||||
{
|
||||
"Name": "Ball of Eyes",
|
||||
"Description": "A snow-globe filled with miniature eyeballs. When shaken, it grants the user a blurry, jittery vision of some future event."
|
||||
},
|
||||
{
|
||||
"Name": "Banana Walkie-Talkies",
|
||||
"Description": "There exist two, and only two, of these items in the world. One of which is possessed by a cranky and lonely half-orc. It appears to be an innocuous wooden banana with a coat of faded yellow paint. When an end (doesn't matter which one) is placed against your ear, you can hear a ringing followed by a *click* and a half-orc yelling at you for waking him up at this ungodly hour. If you drop the banana or \"hang up,\" the call ends. If you stay and listen, the half-orc will yell at you, call out obscenities, and start going on about his daily problems and mishaps in his love life. Every so often (2% chance/day), the banana will ring while you are sleeping and the half-orc will want to talk to you about his problems."
|
||||
},
|
||||
{
|
||||
"Name": "Barrel of Holding",
|
||||
"Description": "This large wooden barrel measuring √(12/π) feet in diameter and 5 feet in height can hold up to 15 cubic feet of matter."
|
||||
},
|
||||
{
|
||||
"Name": "Beam Sword of Severed Nerves",
|
||||
"Description": "A beam sword. It cannot cut anything but nerve strings. Will pass through any other material leaving no harm."
|
||||
},
|
||||
{
|
||||
"Name": "Belt of Pants",
|
||||
"Description": "This belt creates illusory pants on the wearer. The wearer can suppress the illusion at will"
|
||||
},
|
||||
{
|
||||
"Name": "Belt of Tightening",
|
||||
"Description": "Every time you put this belt on, all of your clothes permanently shrink a fraction of a millimeter. The effect is compound."
|
||||
},
|
||||
{
|
||||
"Name": "Belt of Unbathed Breath",
|
||||
"Description": "When worn around the waist, allows the user to breathe underwater. Does not function when wet."
|
||||
},
|
||||
{
|
||||
"Name": "Boogie Skeleton",
|
||||
"Description": "This pile of bones is small, such as one that might be obtained from a bird or a toad, though it can look as though it came from any creature. When a song is sung or played in the vicinity of the skeleton, it begins to dance appropriately. As soon as the music stops, it collapses into the pile of bones again. The skeleton, when dancing, can be no larger than Diminutive."
|
||||
},
|
||||
{
|
||||
"Name": "Book of Canon",
|
||||
"Description": "A book that automatically transforms into a copy of the sacred text of any religion, translated into the language the user is most familiar with."
|
||||
},
|
||||
{
|
||||
"Name": "Book of Confusion",
|
||||
"Description": "The letters in this book always appear to be upside down, even if viewed from different directions at the same time. The book is a bad novel about zombies."
|
||||
},
|
||||
{
|
||||
"Name": "Book of Curses",
|
||||
"Description": "When opened, the book verbally berates anyone in the immediate vicinity, calling into question their combat ability, intellect, personal hygiene, lineage and profession of their mothers, and other delightful insults. Once closed the book continues shouting (although it is muffled) until placed inside a bag or some other similar container for 1d4+1 minutes and ignored. Replying to the book in any other way causes the insults to get louder and more childish the more time you spend replying to it."
|
||||
},
|
||||
{
|
||||
"Name": "Book of Exalted Deeds",
|
||||
"Description": "Contains a listing of some of the finest houses ever sold and the specifics of the titles to the properties."
|
||||
},
|
||||
{
|
||||
"Name": "Boots of Levitation",
|
||||
"Description": "These boots levitate a few inches off the ground when not worn."
|
||||
},
|
||||
{
|
||||
"Name": "Boots of Stylishness",
|
||||
"Description": "Knee high black boots that are always clean and shiny. They never take in water, thus feet are always dry."
|
||||
},
|
||||
{
|
||||
"Name": "Boots of Walking",
|
||||
"Description": "The wearer of the boots cannot run, nor can he take a double move action, and takes a -5 to Tumble checks. These boots are made for walkin', and that's just what they'll do."
|
||||
},
|
||||
{
|
||||
"Name": "Bottle of Air",
|
||||
"Description": "It's a bottle. Full of air. Congratulations."
|
||||
},
|
||||
{
|
||||
"Name": "Bottomless Beer Mug",
|
||||
"Description": "Any liquid poured into this mug treats the bottom as incorporeal, but solid objects don't"
|
||||
},
|
||||
{
|
||||
"Name": "Bowl of Comfortable Warmth",
|
||||
"Description": "Any liquid in the bowl will feel comfortably warm, so icy cold water will feel like it's a bit over room temperature. Do note, however, that it's still icy cold water, it just feels warmer."
|
||||
},
|
||||
{
|
||||
"Name": "Breastplate of Secret Detection",
|
||||
"Description": "If the wearer of this breastplate gains a piece of information that is somehow connected to the concealment of a hidden conspiracy or plot, a live and still wet red herring forms on the inside of the armor."
|
||||
},
|
||||
{
|
||||
"Name": "Bullying Gloves",
|
||||
"Description": "At random intervals, these gloves instil the wearer with a near-irresistible urge to hit themselves."
|
||||
},
|
||||
{
|
||||
"Name": "Bunyan’s Belt",
|
||||
"Description": "When worn, causes an enormous, bushy black beard to appear on the wearer’s face."
|
||||
},
|
||||
{
|
||||
"Name": "Cape of Resistance",
|
||||
"Description": "When this item is placed on any living thing it somehow manages to fall off, untie itself, slip past the owner’s neck entirely, or otherwise avoid being worn."
|
||||
},
|
||||
{
|
||||
"Name": "Case of the Litigator",
|
||||
"Description": "Translates any document placed in the case into legal jargon; non-reversible. Does not confer the ability to understand legal jargon."
|
||||
},
|
||||
{
|
||||
"Name": "Cat of Schrodinger",
|
||||
"Description": "When this cat is not being observed in any way it is both dead and alive. When something observes it, it suddenly becomes either dead or alive with a 50% chance of either."
|
||||
},
|
||||
{
|
||||
"Name": "Chair of Steadiness",
|
||||
"Description": "This chair can be moved but cannot be tipped over by anything less than a DC 35 Strength check."
|
||||
},
|
||||
{
|
||||
"Name": "Charles",
|
||||
"Description": "This small, unremarkable figurine of a gnome refuses to be called anything but Charles. No other name will leave the lips of the speaker. It has no other powers."
|
||||
},
|
||||
{
|
||||
"Name": "Chime of Interruption",
|
||||
"Description": "This instrument can be struck once every round, which takes a standard action. On any round the chime is activated the user may ready one action without spending an action to do so."
|
||||
},
|
||||
{
|
||||
"Name": "Chime of Opening",
|
||||
"Description": "Commonly affixed to or near doors, when pressed it emits a sound on the interior of the owner’s home to let them know guests have arrived."
|
||||
},
|
||||
{
|
||||
"Name": "Chime of Opening (Alternate)",
|
||||
"Description": "When struck against a solid surface, this chime emits a loud click, and opens along its length, to reveal a tiny compartment adequate to conceal a single 'smoke' worth of pipeweed or a blowgun needle. When the compartment is closed, it is seamless and can be detected only with a DC 20 Search check. If hit with an instrument such as a small mallet, it chimes."
|
||||
},
|
||||
{
|
||||
"Name": "Cloak of Billowing",
|
||||
"Description": "This black and silver cloak will always billow dramatically behind the wearer, it has no other effects."
|
||||
},
|
||||
{
|
||||
"Name": "Cloak of Displacement, Minor",
|
||||
"Description": "This item appears to be a normal cloak, but when worn by a character its magical properties distort and warp reality. When any attack is made against the wearer the cloak has a 20% chance of falling off, no matter how it is secured."
|
||||
},
|
||||
{
|
||||
"Name": "Compacting hammer",
|
||||
"Description": "The force imparted by it is multiplied, but is spread around the surface of a struck object facing inward."
|
||||
},
|
||||
{
|
||||
"Name": "Cymbal of Symbols",
|
||||
"Description": "This musical instrument enables the user to comprehend dead languages, but only while they are deafened by noise."
|
||||
},
|
||||
{
|
||||
"Name": "Dagger of Told Secrets",
|
||||
"Description": "A simple-looking dagger. If used to backstab someone to death, it will whisper your most embarrassing secret to that person."
|
||||
},
|
||||
{
|
||||
"Name": "Dagger of Untold Secrets",
|
||||
"Description": "A simple looking dagger. If used to backstab someone to death, it will whisper the most embarrassing secret of that person to you."
|
||||
},
|
||||
{
|
||||
"Name": "Decanter of Endless Sorrow",
|
||||
"Description": "A pewter flask that produces limitless alcohol when held to their lips by someone who is troubled. It gets them drunk but they never feel any better."
|
||||
},
|
||||
{
|
||||
"Name": "Diadem of Brothaurity",
|
||||
"Description": "When wearing this headpiece, you are as elegant and well-spoken as a famous diplomat or regent, but you can't stop calling everyone bro."
|
||||
},
|
||||
{
|
||||
"Name": "Enchanted Book of Collected Stories",
|
||||
"Description": "Opening this will cause miniature creatures/people to pour out and preform a chapter from the book much like a theater."
|
||||
},
|
||||
{
|
||||
"Name": "Fade to Black Belt",
|
||||
"Description": "The wearer of this belt will be unable to remember any sexual encounter begun while they were wearing the belt."
|
||||
},
|
||||
{
|
||||
"Name": "Focusing Ring",
|
||||
"Description": "The digit on which this ring is worn can be viewed in extremely high definition from a great distance."
|
||||
},
|
||||
{
|
||||
"Name": "Gloves of Tinkering",
|
||||
"Description": "Wearing the gloves will make you able to almost repair any broken item. However, you will always end up with pieces from the item that don't seem to fit anywhere."
|
||||
},
|
||||
{
|
||||
"Name": "Greater Staff of Random Summoning",
|
||||
"Description": "Summons a random creature at a random place. You could be summoning a giant Ogre on the other side of the globe for all you know."
|
||||
},
|
||||
{
|
||||
"Name": "Hoarder's Wand",
|
||||
"Description": "Does nothing but for some reason you think it might be important later in your quest."
|
||||
},
|
||||
{
|
||||
"Name": "Hood of Offensive Facades",
|
||||
"Description": "This hood will change your identity in the eyes of others to the appearance of the person they most personally dislike."
|
||||
},
|
||||
{
|
||||
"Name": "Hood Of Worrisome Facades",
|
||||
"Description": "This hood will change your identity in the eyes of others, however the identity used will be random."
|
||||
},
|
||||
{
|
||||
"Name": "Indestructible Notebook of Memories",
|
||||
"Description": "This otherwise normal notepad of normal notepad size cannot be damaged or destroyed, and anything written in it cannot be obscured or defaced. It also has unlimited pages despite its finite size. However, the data it holds only lasts as long as the writer independently remembers it, and decays in exact proportion to the relevant memories. Remember who and when, but not where? Then the words describing the location in that particular entry are the only ones gone."
|
||||
},
|
||||
{
|
||||
"Name": "Intransigent Rod",
|
||||
"Description": "When the button on this artifact is pressed in, the holder's opinions solidify and they become impossible to convince."
|
||||
},
|
||||
{
|
||||
"Name": "Lunchbox of Delicious Unfulfillment",
|
||||
"Description": "This lunchbox will hold whatever food you desire. However you will never get full and the food will deliver no nourishment."
|
||||
},
|
||||
{
|
||||
"Name": "The Mattress of Poverty",
|
||||
"Description": "No matter how you fluff this gorgeous, thick, mattress, you will always sleep on the thin part of it."
|
||||
},
|
||||
{
|
||||
"Name": "Mug O' Dissatisfaction",
|
||||
"Description": "A mug that always produces a steaming hot cup of coffee or tea when tapped on the bottom. It conjures the opposite of what the tapper prefers, so if you like tea you get coffee and vice versa. Handing the full mug to another person will make the drink in it transform to the opposite of that persons preferences."
|
||||
},
|
||||
{
|
||||
"Name": "Murder Dagger",
|
||||
"Description": "All damage it would deal is instead replaced by the target being harassed by crows for that many hours."
|
||||
},
|
||||
{
|
||||
"Name": "Needle Of Learned Compromise",
|
||||
"Description": "This needle will create beautiful tattoos of any design, however they hurt a tiny bit more. When used to sew it is entirely normal."
|
||||
},
|
||||
{
|
||||
"Name": "Portable Dark Tavern Corner",
|
||||
"Description": "Consisting of two wooden boards connected by a hinge, this artifact draws those nearby into assuming it is a perfect spot to conduct seedy business."
|
||||
},
|
||||
{
|
||||
"Name": "Ring of First Impression",
|
||||
"Description": "Wearing the ring will make you able to perform a perfect handshake with the hand wearing it."
|
||||
},
|
||||
{
|
||||
"Name": "Sack of Hive Eggs",
|
||||
"Description": "Crushing one of the numerous tiny eggs will cause the thoughts of everybody in the proximity to merge. Everybody can hear what you think and you can hear everybody."
|
||||
},
|
||||
{
|
||||
"Name": "Shoes of the Restless Traveler",
|
||||
"Description": "These shoes allow their user to run for miles without feeling fatigue, but if they try to do anything else with it (walk, sit down, jump), they will instantly trip"
|
||||
},
|
||||
{
|
||||
"Name": "Sword of Parrying",
|
||||
"Description": "Parries every attack, swinging it yourself will force it to \"parry\" your opponents weapon/attack even though he/she/it is defenseless."
|
||||
},
|
||||
{
|
||||
"Name": "Vorpal Grindstone",
|
||||
"Description": "It can \"sharpen\" any object to become vorpal. Any object."
|
||||
},
|
||||
{
|
||||
"Name": "The Water Hat",
|
||||
"Description": "A small red hat, when worn, causes water to pour from the wearer's fingers at the speed "
|
||||
}
|
||||
]
|
69
src/Ellie/data/patron.yml
Normal file
|
@ -0,0 +1,69 @@
|
|||
# DO NOT CHANGE
|
||||
version: 2
|
||||
# Whether the patronage feature is enabled
|
||||
isEnabled: false
|
||||
# List of patron only features and relevant quota data
|
||||
quotas:
|
||||
# Dictionary of feature names with their respective limits. Set to null for unlimited
|
||||
features:
|
||||
timely:extra_percent:
|
||||
V: 10
|
||||
X: 22
|
||||
XX: 50
|
||||
L: 150
|
||||
C: 350
|
||||
rero:max_count:
|
||||
V: 25
|
||||
X: 50
|
||||
cleverbot:response:
|
||||
V: -20
|
||||
X: 5000
|
||||
XX: 12000
|
||||
L: 35000
|
||||
C: 100000
|
||||
# Dictionary of commands with their respective quota data
|
||||
commands:
|
||||
cleverbot:
|
||||
V:
|
||||
prune:
|
||||
X:
|
||||
PerHour: 1
|
||||
XX:
|
||||
PerHour: 3
|
||||
google:
|
||||
V:
|
||||
PerDay: 15
|
||||
X:
|
||||
PerDay: 30
|
||||
XX:
|
||||
PerDay: 60
|
||||
L:
|
||||
PerDay: 150
|
||||
C:
|
||||
PerDay: 300
|
||||
image:
|
||||
V:
|
||||
PerDay: 15
|
||||
X:
|
||||
PerDay: 30
|
||||
XX:
|
||||
PerDay: 60
|
||||
L:
|
||||
PerDay: 150
|
||||
C:
|
||||
PerDay: 300
|
||||
youtube:
|
||||
V:
|
||||
PerDay: 25
|
||||
X:
|
||||
PerDay: 50
|
||||
XX:
|
||||
PerDay: 100
|
||||
L:
|
||||
PerDay: 250
|
||||
C:
|
||||
PerDay: 500
|
||||
# Dictionary of groups with their respective quota data
|
||||
groups: {}
|
||||
# Dictionary of modules with their respective quota data
|
||||
modules: {}
|
21
src/Ellie/data/pokemon/LICENSE
Normal file
|
@ -0,0 +1,21 @@
|
|||
Copyright (c) 2011-2016 Guangcong Luo and other contributors
|
||||
http://pokemonshowdown.com/
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of this software and associated documentation files (the
|
||||
"Software"), to deal in the Software without restriction, including
|
||||
without limitation the rights to use, copy, modify, merge, publish,
|
||||
distribute, sublicense, and/or sell copies of the Software, and to
|
||||
permit persons to whom the Software is furnished to do so, subject to
|
||||
the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be
|
||||
included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
||||
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
||||
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
||||
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
1
src/Ellie/data/pokemon/name-id_map.json
Normal file
1930
src/Ellie/data/pokemon/pokemon_abilities.json
Normal file
29770
src/Ellie/data/pokemon/pokemon_list.json
Normal file
43
src/Ellie/data/searches.yml
Normal file
|
@ -0,0 +1,43 @@
|
|||
# DO NOT CHANGE
|
||||
version: 1
|
||||
# Which engine should .search command
|
||||
# 'google_scrape' - default. Scrapes the webpage for results. May break. Requires no api keys.
|
||||
# 'google' - official google api. Requires googleApiKey and google.searchId set in creds.yml
|
||||
# 'searx' - requires at least one searx instance specified in the 'searxInstances' property below
|
||||
webSearchEngine: Google_Scrape
|
||||
# Which engine should .image command use
|
||||
# 'google'- official google api. googleApiKey and google.imageSearchId set in creds.yml
|
||||
# 'searx' requires at least one searx instance specified in the 'searxInstances' property below
|
||||
imgSearchEngine: Google
|
||||
# Which search provider will be used for the `.youtube` command.
|
||||
#
|
||||
# - `ytDataApiv3` - uses google's official youtube data api. Requires `GoogleApiKey` set in creds and youtube data api enabled in developers console
|
||||
#
|
||||
# - `ytdl` - default, uses youtube-dl. Requires `youtube-dl` to be installed and it's path added to env variables. Slow.
|
||||
#
|
||||
# - `ytdlp` - recommended easy, uses `yt-dlp`. Requires `yt-dlp` to be installed and it's path added to env variables
|
||||
#
|
||||
# - `invidious` - recommended advanced, uses invidious api. Requires at least one invidious instance specified in the `invidiousInstances` property
|
||||
ytProvider: Ytdlp
|
||||
# Set the searx instance urls in case you want to use 'searx' for either img or web search.
|
||||
# Nadeko will use a random one for each request.
|
||||
# Use a fully qualified url. Example: `https://my-searx-instance.mydomain.com`
|
||||
# Instances specified must support 'format=json' query parameter.
|
||||
# - In case you're running your own searx instance, set
|
||||
#
|
||||
# search:
|
||||
# formats:
|
||||
# - json
|
||||
#
|
||||
# in 'searxng/settings.yml' on your server
|
||||
#
|
||||
# - If you're using a public instance, make sure that the instance you're using supports it (they usually don't)
|
||||
searxInstances: []
|
||||
# Set the invidious instance urls in case you want to use 'invidious' for `.youtube` search
|
||||
# Nadeko will use a random one for each request.
|
||||
# These instances may be used for music queue functionality in the future.
|
||||
# Use a fully qualified url. Example: https://my-invidious-instance.mydomain.com
|
||||
#
|
||||
# Instances specified must have api available.
|
||||
# You check that by opening an api endpoint in your browser. For example: https://my-invidious-instance.mydomain.com/api/v1/trending
|
||||
invidiousInstances: []
|
2361
src/Ellie/data/strings/commands/commands.en-US.yml
Normal file
1062
src/Ellie/data/strings/responses/responses.en-US.json
Normal file
1
src/Ellie/data/trivia_questions.json
Normal file
242
src/Ellie/data/typing_articles3.json
Normal file
|
@ -0,0 +1,242 @@
|
|||
[
|
||||
{
|
||||
"Source": "Heart Of Darkness",
|
||||
"Text": "The sea-reach of the Thames stretched before us like the beginning of an interminable waterway. In the offing the sea and the sky were welded together without a joint, and in the luminous space the tanned sails of the barges drifting up with the tide seemed to stand still in red clusters of canvas sharply peaked, with gleams of varnished sprits."
|
||||
},
|
||||
{
|
||||
"Source": "Heart Of Darkness",
|
||||
"Text": "I flew around like mad to get ready, and before forty-eight hours I was crossing the Channel to show myself to my employers, and sign the contract. In a very few hours I arrived in a city that always makes me think of a whited sepulchre. Prejudice no doubt. I had no difficulty in finding the Company's offices."
|
||||
},
|
||||
{
|
||||
"Source": "Heart Of Darkness",
|
||||
"Text": "It arrested me, and he stood by civilly, holding an empty half-pint champagne bottle (medical comforts) with the candle stuck in it. To my question he said Mr. Kurtz had painted this-in this very station more than a year ago-while waiting for means to go to his trading post. 'Tell me, pray,' said I, 'who is this Mr. Kurtz?'"
|
||||
},
|
||||
{
|
||||
"Source": "Heart Of Darkness",
|
||||
"Text": "In exterior he resembled a butcher in a poor neighbourhood, and his eyes had a look of sleepy cunning. He carried his fat paunch with ostentation on his short legs, and during the time his gang infested the station spoke to no one but his nephew. You could see these two roaming about all day long with their heads close together in an everlasting confab."
|
||||
},
|
||||
{
|
||||
"Source": "Heart Of Darkness",
|
||||
"Text": "The dusk was falling. I had to wait in a lofty drawing-room with three long windows from floor to ceiling that were like three luminous and bedraped columns. The bent gilt legs and backs of the furniture shone in indistinct curves. The tall marble fireplace had a cold and monumental whiteness. A grand piano stood massively in a corner; with dark gleams on the flat surfaces like a sombre and polished sarcophagus. A high door opened-closed. I rose."
|
||||
},
|
||||
{
|
||||
"Source": "Alice's Adventures in Wonderland",
|
||||
"Text": "So she was considering in her own mind (as well as she could, for the hot day made her feel very sleepy and stupid), whether the pleasure of making a daisy-chain would be worth the trouble of getting up and picking the daisies, when suddenly a White Rabbit with pink eyes ran close by her."
|
||||
},
|
||||
{
|
||||
"Source": "Alice's Adventures in Wonderland",
|
||||
"Text": "Very soon the Rabbit noticed Alice, as she went hunting about, and called out to her in an angry tone, 'Why, Mary Ann, what are you doing out here? Run home this moment, and fetch me a pair of gloves and a fan! Quick, now!' And Alice was so much frightened that she ran off at once in the direction it pointed to, without trying to explain the mistake it had made."
|
||||
},
|
||||
{
|
||||
"Source": "Alice's Adventures in Wonderland",
|
||||
"Text": "It was so long since she had been anything near the right size, that it felt quite strange at first; but she got used to it in a few minutes, and began talking to herself, as usual. ‘Come, there's half my plan done now! How puzzling all these changes are! I'm never sure what I'm going to be, from one minute to another! However, I've got back to my right size: the next thing is, to get into that beautiful garden-how is that to be done, I wonder?'"
|
||||
},
|
||||
{
|
||||
"Source": "Alice's Adventures in Wonderland",
|
||||
"Text": "Alice could see, as well as if she were looking over their shoulders, that all the jurors were writing down ‘stupid things!' on their slates, and she could even make out that one of them didn't know how to spell ‘stupid,' and that he had to ask his neighbour to tell him. ‘A nice muddle their slates'll be in before the trial's over!' thought Alice."
|
||||
},
|
||||
{
|
||||
"Source": "Alice's Adventures in Wonderland",
|
||||
"Text": "‘Oh, I've had such a curious dream!' said Alice, and she told her sister, as well as she could remember them, all these strange Adventures of hers that you have just been reading about; and when she had finished, her sister kissed her, and said, ‘It was a curious dream, dear, certainly: but now run in to your tea; it's getting late.' So Alice got up and ran off, thinking while she ran, as well she might, what a wonderful dream it had been."
|
||||
},
|
||||
{
|
||||
"Source": "Pride And Prejudice",
|
||||
"Text": "In a few days Mr. Bingley returned Mr. Bennet's visit, and sat about ten minutes with him in his library. He had entertained hopes of being admitted to a sight of the young ladies, of whose beauty he had heard much; but he saw only the father. The ladies were somewhat more fortunate, for they had the advantage of ascertaining from an upper window that he wore a blue coat, and rode a black horse."
|
||||
},
|
||||
{
|
||||
"Source": "Pride And Prejudice",
|
||||
"Text": "As no objection was made to the young people's engagement with their aunt, and all Mr. Collins's scruples of leaving Mr. and Mrs. Bennet for a single evening during his visit were most steadily resisted, the coach conveyed him and his five cousins at a suitable hour to Meryton; and the girls had the pleasure of hearing, as they entered the drawing-room, that Mr. Wickham had accepted their uncle's invitation, and was then in the house."
|
||||
},
|
||||
{
|
||||
"Source": "Pride And Prejudice",
|
||||
"Text": "She had not been many hours at home before she found that the Brighton scheme, of which Lydia had given them a hint at the inn, was under frequent discussion between her parents. Elizabeth saw directly that her father had not the smallest intention of yielding; but his answers were at the same time so vague and equivocal, that her mother, though often disheartened, had never yet despaired of succeeding at last."
|
||||
},
|
||||
{
|
||||
"Source": "Pride And Prejudice",
|
||||
"Text": "When he was gone, they were certain at least of receiving constant information of what was going on, and their uncle promised, at parting, to prevail on Mr. Bennet to return to Longbourn, as soon as he could, to the great consolation of his sister, who considered it as the only security for her husband's not being killed in a duel."
|
||||
},
|
||||
{
|
||||
"Source": "Pride And Prejudice",
|
||||
"Text": "If he had been wavering before as to what he should do, which had often seemed likely, the advice and entreaty of so near a relation might settle every doubt, and determine him at once to be as happy as dignity unblemished could make him. In that case he would return no more. Lady Catherine might see him in her way through town; and his engagement to Bingley of coming again to Netherfield must give way."
|
||||
},
|
||||
{
|
||||
"Source": "Frankenstein; Or, The Modern Prometheus",
|
||||
"Text": "You may conceive my astonishment on hearing such a question addressed to me from a man on the brink of destruction and to whom I should have supposed that my vessel would have been a resource which he would not have exchanged for the most precious wealth the earth can afford. I replied, however, that we were on a voyage of discovery towards the northern pole."
|
||||
},
|
||||
{
|
||||
"Source": "Frankenstein; Or, The Modern Prometheus",
|
||||
"Text": "At that instant my father entered. I saw unhappiness deeply impressed on his countenance, but he endeavoured to welcome me cheerfully; and, after we had exchanged our mournful greeting, would have introduced some other topic than that of our disaster, had not Ernest exclaimed, \"Good God, papa! Victor says that he knows who was the murderer of poor William.\""
|
||||
},
|
||||
{
|
||||
"Source": "Frankenstein; Or, The Modern Prometheus",
|
||||
"Text": "The old man, leaning on his son, walked each day at noon, when it did not rain, as I found it was called when the heavens poured forth its waters. This frequently took place, but a high wind quickly dried the earth, and the season became far more pleasant than it had been."
|
||||
},
|
||||
{
|
||||
"Source": "Frankenstein; Or, The Modern Prometheus",
|
||||
"Text": "When the news reached Leghorn that Felix was deprived of his wealth and rank, the merchant commanded his daughter to think no more of her lover, but to prepare to return to her native country. The generous nature of Safie was outraged by this command; she attempted to expostulate with her father, but he left her angrily, reiterating his tyrannical mandate."
|
||||
},
|
||||
{
|
||||
"Source": "Frankenstein; Or, The Modern Prometheus",
|
||||
"Text": "The wind, which had fallen in the south, now rose with great violence in the west. The moon had reached her summit in the heavens and was beginning to descend; the clouds swept across it swifter than the flight of the vulture and dimmed her rays, while the lake reflected the scene of the busy heavens, rendered still busier by the restless waves that were beginning to rise. Suddenly a heavy storm of rain descended."
|
||||
},
|
||||
{
|
||||
"Source": "Huckleberry Finn",
|
||||
"Text": "Now she had got a start, and she went on and told me all about the good place. She said all a body would have to do there was to go around all day long with a harp and sing, forever and ever. So I didn't think much of it. But I never said so. I asked her if she reckoned Tom Sawyer would go there, and she said not by a considerable sight. I was glad about that, because I wanted him and me to be together."
|
||||
},
|
||||
{
|
||||
"Source": "Huckleberry Finn",
|
||||
"Text": "Ben Rogers said he couldn't get out much, only Sundays, and so he wanted to begin next Sunday; but all the boys said it would be wicked to do it on Sunday, and that settled the thing. They agreed to get together and fix a day as soon as they could, and then we elected Tom Sawyer first captain and Jo Harper second captain of the Gang, and so started home."
|
||||
},
|
||||
{
|
||||
"Source": "Huckleberry Finn",
|
||||
"Text": "Pap he hadn't been seen for more than a year, and that was comfortable for me; I didn't want to see him no more. He used to always whale me when he was sober and could get his hands on me; though I used to take to the woods most of the time when he was around."
|
||||
},
|
||||
{
|
||||
"Source": "Huckleberry Finn",
|
||||
"Text": "I went down to the front garden and clumb over the stile where you go through the high board fence. There was an inch of new snow on the ground, and I seen somebody's tracks. They had come up from the quarry and stood around the stile a while, and then went on around the garden fence. It was funny they hadn't come in, after standing around so. I couldn't make it out. It was very curious, somehow."
|
||||
},
|
||||
{
|
||||
"Source": "Huckleberry Finn",
|
||||
"Text": "It did seem a powerful long time before Jim's light showed up; and when it did show it looked like it was a thousand mile off. By the time I got there the sky was beginning to get a little gray in the east; so we struck for an island, and hid the raft, and sunk the skiff, and turned in and slept like dead people."
|
||||
},
|
||||
{
|
||||
"Source": "A Tale Of Two Cities",
|
||||
"Text": "With those words the passenger opened the coach-door and got in; not at all assisted by his fellow-passengers, who had expeditiously secreted their watches and purses in their boots, and were now making a general pretence of being asleep. With no more definite purpose than to escape the hazard of originating any other kind of action."
|
||||
},
|
||||
{
|
||||
"Source": "A Tale Of Two Cities",
|
||||
"Text": "Making his way through the tainted crowd, dispersed up and down this hideous scene of action, with the skill of a man accustomed to make his way quietly, the messenger found out the door he sought, and handed in his letter through a trap in it. For, people then paid to see the play at the Old Bailey, just as they paid to see the play in Bedlam-only the former entertainment was much the dearer."
|
||||
},
|
||||
{
|
||||
"Source": "A Tale Of Two Cities",
|
||||
"Text": "Defarge refreshed himself with a draught of wine-but, he took less than was given to the stranger, as being himself a man to whom it was no rarity-and stood waiting until the countryman had made his breakfast. He looked at no one present, and no one now looked at him; not even Madame Defarge, who had taken up her knitting, and was at work."
|
||||
},
|
||||
{
|
||||
"Source": "A Tale Of Two Cities",
|
||||
"Text": "The President required the name of that citizen. The accused explained that the citizen was his first witness. He also referred with confidence to the citizen's letter, which had been taken from him at the Barrier, but which he did not doubt would be found among the papers then before the President."
|
||||
},
|
||||
{
|
||||
"Source": "A Tale Of Two Cities",
|
||||
"Text": "But, all this was at first. Before long, the consideration that there was no disgrace in the fate he must meet, and that numbers went the same road wrongfully, and trod it firmly every day, sprang up to stimulate him. Next followed the thought that much of the future peace of mind enjoyable by the dear ones, depended on his quiet fortitude. So, by degrees he calmed into the better state, when he could raise his thoughts much higher, and draw comfort down."
|
||||
},
|
||||
{
|
||||
"Source": "Metamorphosis",
|
||||
"Text": "The three gentlemen stepped out of their room and looked round in amazement for their breakfasts; they had been forgotten about. \"Where is our breakfast?\", the middle gentleman asked the cleaner irritably. She just put her finger on her lips and made a quick and silent sign to the men that they might like to come into Gregor's room. They did so, and stood around Gregor's corpse with their hands in the pockets of their well-worn coats. It was now quite light in the room."
|
||||
},
|
||||
{
|
||||
"Source": "Metamorphosis",
|
||||
"Text": "The first thing he wanted to do was get the lower part of his body out of the bed, but he had never seen this lower part, and could not imagine what it looked like; it turned out to be too hard to move; it went so slowly; and finally, almost in a frenzy, when he carelessly shoved himself forwards with all the force he could gather, he chose the wrong direction, hit hard against the lower bedpost, and learned from the burning pain he felt that the lower part of his body might well, at present, be the most sensitive."
|
||||
},
|
||||
{
|
||||
"Source": "Metamorphosis",
|
||||
"Text": "But the chief clerk had turned away as soon as Gregor had started to speak, and, with protruding lips, only stared back at him over his trembling shoulders as he left. He did not keep still for a moment while Gregor was speaking, but moved steadily towards the door without taking his eyes off him. He moved very gradually, as if there had been some secret prohibition on leaving the room."
|
||||
},
|
||||
{
|
||||
"Source": "Metamorphosis",
|
||||
"Text": "He spent the whole night there. Some of the time he passed in a light sleep, although he frequently woke from it in alarm because of his hunger, and some of the time was spent in worries and vague hopes which, however, always led to the same conclusion: for the time being he must remain calm, he must show patience and the greatest consideration so that his family could bear the unpleasantness that he, in his present condition, was forced to impose on them."
|
||||
},
|
||||
{
|
||||
"Source": "Metamorphosis",
|
||||
"Text": "He was hardly inside his room before the door was hurriedly shut, bolted and locked. The sudden noise behind Gregor so startled him that his little legs collapsed under him. It was his sister who had been in so much of a rush. She had been standing there waiting and sprung forward lightly, Gregor had not heard her coming at all, and as she turned the key in the lock she said loudly to her parents \"At last!\"."
|
||||
},
|
||||
{
|
||||
"Source": "Dracula",
|
||||
"Text": "Just as I had come to this conclusion I heard a heavy step approaching behind the great door, and saw through the chinks the gleam of a coming light. Then there was the sound of rattling chains and the clanking of massive bolts drawn back. A key was turned with the loud grating noise of long disuse, and the great door swung back."
|
||||
},
|
||||
{
|
||||
"Source": "Dracula",
|
||||
"Text": "She threw herself on her knees, and raising up her hands, cried the same words in tones which wrung my heart. Then she tore her hair and beat her breast, and abandoned herself to all the violences of extravagant emotion. Finally, she threw herself forward, and, though I could not see her, I could hear the beating of her naked hands against the door."
|
||||
},
|
||||
{
|
||||
"Source": "Dracula",
|
||||
"Text": "I feel so happy to-night. I have been so miserably weak, that to be able to think and move about is like feeling sunshine after a long spell of east wind out of a steel sky. Somehow Arthur feels very, very close to me. I seem to feel his presence warm about me. I suppose it is that sickness and weakness are selfish things and turn our inner eyes and sympathy on ourselves, whilst health and strength give Love rein, and in thought and feeling he can wander where he wills."
|
||||
},
|
||||
{
|
||||
"Source": "Dracula",
|
||||
"Text": "It was a lonely vigil. Just after I had taken my place I heard a distant clock strike twelve, and in time came one and two. I was chilled and unnerved, and angry with the Professor for taking me on such an errand and with myself for coming. I was too cold and too sleepy to be keenly observant, and not sleepy enough to betray my trust so altogether I had a dreary, miserable time."
|
||||
},
|
||||
{
|
||||
"Source": "Dracula",
|
||||
"Text": "Another surprise. Mina woke me early, about the same time as yesterday, and asked me to bring Dr. Van Helsing. I thought that it was another occasion for hypnotism, and without question went for the Professor. He had evidently expected some such call, for I found him dressed in his room. His door was ajar, so that he could hear the opening of the door of our room. He came at once; as he passed into the room, he asked Mina if the others might come, too."
|
||||
},
|
||||
{
|
||||
"Source": "The Golden Bird",
|
||||
"Text": "Time passed on; and as the eldest son did not come back, and no tidings were heard of him, the second son set out, and the same thing happened to him. He met the fox, who gave him the good advice: but when he came to the two inns, his eldest brother was standing at the window where the merrymaking was, and called to him to come in; and he could not withstand the temptation, but went in, and forgot the golden bird and his country in the same manner."
|
||||
},
|
||||
{
|
||||
"Source": "The Goose-Girl",
|
||||
"Text": "When the time came for them to set out, the fairy went into her bed-chamber, and took a little knife, and cut off a lock of her hair, and gave it to the princess, and said, ‘Take care of it, dear child; for it is a charm that may be of use to you on the road.' Then they all took a sorrowful leave of the princess; and she put the lock of hair into her bosom, got upon her horse, and set off on her journey to her bridegroom's kingdom."
|
||||
},
|
||||
{
|
||||
"Source": "Hansel And Gretel",
|
||||
"Text": "They walked the whole night long, and by break of day came once more to their father's house. They knocked at the door, and when the woman opened it and saw that it was Hansel and Gretel, she said: ‘You naughty children, why have you slept so long in the forest?-we thought you were never coming back at all!' The father, however, rejoiced, for it had cut him to the heart to leave them behind alone."
|
||||
},
|
||||
{
|
||||
"Source": "Frederick And Catherine",
|
||||
"Text": "Away ran Catherine, and away ran the dog across the field: but he ran faster than she, and stuck close to the steak. ‘It's all gone, and “what can't be cured must be endured”,' said Catherine. So she turned round; and as she had run a good way and was tired, she walked home leisurely to cool herself."
|
||||
},
|
||||
{
|
||||
"Source": "Snowdrop",
|
||||
"Text": "Then he told her all that had happened, and said, ‘I love you far better than all the world; so come with me to my father's palace, and you shall be my wife.' And Snowdrop consented, and went home with the prince; and everything was got ready with great pomp and splendour for their wedding."
|
||||
},
|
||||
{
|
||||
"Source": "War And Peace",
|
||||
"Text": "One of the next arrivals was a stout, heavily built young man with close-cropped hair, spectacles, the light-colored breeches fashionable at that time, a very high ruffle, and a brown dress coat. This stout young man was an illegitimate son of Count Bezúkhov, a well-known grandee of Catherine's time who now lay dying in Moscow."
|
||||
},
|
||||
{
|
||||
"Source": "War And Peace",
|
||||
"Text": "Though he was certainly rather bigger than the other men in the room, her anxiety could only have reference to the clever though shy, but observant and natural, expression which distinguished him from everyone else in that drawing room. "
|
||||
},
|
||||
{
|
||||
"Source": "War And Peace",
|
||||
"Text": "The whole day had been hot. Somewhere a storm was gathering, but only a small cloud had scattered some raindrops lightly, sprinkling the road and the sappy leaves. The left side of the forest was dark in the shade, the right side glittered in the sunlight, wet and shiny and scarcely swayed by the breeze. Everything was in blossom, the nightingales trilled, and their voices reverberated now near, now far away."
|
||||
},
|
||||
{
|
||||
"Source": "War And Peace",
|
||||
"Text": "All the best and happiest moments of his life-especially his earliest childhood, when he used to be undressed and put to bed, and when leaning over him his nurse sang him to sleep and he, burying his head in the pillow, felt happy in the mere consciousness of life-returned to his memory, not merely as something past but as something present."
|
||||
},
|
||||
{
|
||||
"Source": "War And Peace",
|
||||
"Text": "The rain had stopped, and only the mist was falling and drops from the trees. Denísov, the esaul, and Pétya rode silently, following the peasant in the knitted cap who, stepping lightly with outturned toes and moving noiselessly in his bast shoes over the roots and wet leaves, silently led them to the edge of the forest."
|
||||
},
|
||||
{
|
||||
"Source": "Gulliver's Travels into Several Remote Nations of the World",
|
||||
"Text": "Ingratitude is among them a capital crime, as we read it to have been in some other countries: for they reason thus; that whoever makes ill returns to his benefactor, must needs be a common enemy to the rest of mankind, from whom he has received no obligation, and therefore such a man is not fit to live."
|
||||
},
|
||||
{
|
||||
"Source": "Gulliver's Travels into Several Remote Nations of the World",
|
||||
"Text": "The next day I sailed to another island, and thence to a third and fourth, sometimes using my sail, and sometimes my paddles. But, not to trouble the reader with a particular account of my distresses, let it suffice, that on the fifth day I arrived at the last island in my sight, which lay south-south-east to the former."
|
||||
},
|
||||
{
|
||||
"Source": "Gulliver's Travels into Several Remote Nations of the World",
|
||||
"Text": "On the 16th of April we put in at the Downs. I landed next morning, and saw once more my native country, after an absence of five years and six months complete. I went straight to Redriff, where I arrived the same day at two in the afternoon, and found my wife and family in good health."
|
||||
},
|
||||
{
|
||||
"Source": "Gulliver's Travels into Several Remote Nations of the World",
|
||||
"Text": "I durst make no return to this malicious insinuation, which debased human understanding below the sagacity of a common hound, who has judgment enough to distinguish and follow the cry of the ablest dog in the pack, without being ever mistaken."
|
||||
},
|
||||
{
|
||||
"Source": "Gulliver's Travels into Several Remote Nations of the World",
|
||||
"Text": "It is easy for us who travel into remote countries, which are seldom visited by Englishmen or other Europeans, to form descriptions of wonderful animals both at sea and land. Whereas a traveller's chief aim should be to make men wiser and better, and to improve their minds by the bad, as well as good, example of what they deliver concerning foreign places."
|
||||
},
|
||||
{
|
||||
"Source": "The Republic",
|
||||
"Text": "Now, I said, you are on more substantial and almost unanswerable ground; for if the injustice which you were maintaining to be profitable had been admitted by you as by others to be vice and deformity, an answer might have been given to you on received principles; but now I perceive that you will call injustice honourable and strong, and to the unjust you will attribute all the qualities which were attributed by us before to the just, seeing that you do not hesitate to rank injustice with wisdom and virtue."
|
||||
},
|
||||
{
|
||||
"Source": "The Republic",
|
||||
"Text": "And is he likely to be brave who has no spirit, whether horse or dog or any other animal? Have you never observed how invincible and unconquerable is spirit and how the presence of it makes the soul of any creature to be absolutely fearless and indomitable?"
|
||||
},
|
||||
{
|
||||
"Source": "The Republic",
|
||||
"Text": "Well, I replied, I suppose that I must retrace my steps and say what I perhaps ought to have said before in the proper place. The part of the men has been played out, and now properly enough comes the turn of the women. Of them I will proceed to speak, and the more readily since I am invited by you."
|
||||
},
|
||||
{
|
||||
"Source": "The Republic",
|
||||
"Text": "You are aware, I replied, that quick intelligence, memory, sagacity, cleverness, and similar qualities, do not often grow together, and that persons who possess them and are at the same time high-spirited and magnanimous are not so constituted by nature as to live orderly and in a peaceful and settled manner; they are driven any way by their impulses, and all solid principle goes out of them."
|
||||
},
|
||||
{
|
||||
"Source": "The Republic",
|
||||
"Text": "And the end is that when they see the people, not of their own accord, but through ignorance, and because they are deceived by informers, seeking to do them wrong, then at last they are forced to become oligarchs in reality; they do not wish to be, but the sting of the drones torments them and breeds revolution in them."
|
||||
}
|
||||
]
|
757
src/Ellie/data/units.json
Normal file
|
@ -0,0 +1,757 @@
|
|||
[
|
||||
{
|
||||
"Triggers": [
|
||||
"millimeter",
|
||||
"millimeters",
|
||||
"millimeter",
|
||||
"mm"
|
||||
],
|
||||
"UnitType": "length",
|
||||
"Modifier": 0.001
|
||||
},
|
||||
{
|
||||
"Triggers": [
|
||||
"centimeter",
|
||||
"centimeters",
|
||||
"centimeter",
|
||||
"cm"
|
||||
],
|
||||
"UnitType": "length",
|
||||
"Modifier": 0.01
|
||||
},
|
||||
{
|
||||
"Triggers": [
|
||||
"decimeter",
|
||||
"decimeters",
|
||||
"decimeter",
|
||||
"dm"
|
||||
],
|
||||
"UnitType": "length",
|
||||
"Modifier": 0.1
|
||||
},
|
||||
{
|
||||
"Triggers": [
|
||||
"meter",
|
||||
"meters",
|
||||
"meter",
|
||||
"m"
|
||||
],
|
||||
"UnitType": "length",
|
||||
"Modifier": 1.0
|
||||
},
|
||||
{
|
||||
"Triggers": [
|
||||
"kilometer",
|
||||
"kilometers",
|
||||
"kilometer",
|
||||
"km"
|
||||
],
|
||||
"UnitType": "length",
|
||||
"Modifier": 1000.0
|
||||
},
|
||||
{
|
||||
"Triggers": [
|
||||
"foot",
|
||||
"feet",
|
||||
"foot",
|
||||
"ft"
|
||||
],
|
||||
"UnitType": "length",
|
||||
"Modifier": 0.3048
|
||||
},
|
||||
{
|
||||
"Triggers": [
|
||||
"inch",
|
||||
"inches",
|
||||
"inch",
|
||||
"in"
|
||||
],
|
||||
"UnitType": "length",
|
||||
"Modifier": 0.0254
|
||||
},
|
||||
{
|
||||
"Triggers": [
|
||||
"mile",
|
||||
"miles",
|
||||
"mile",
|
||||
"mi"
|
||||
],
|
||||
"UnitType": "length",
|
||||
"Modifier": 1609.344
|
||||
},
|
||||
{
|
||||
"Triggers": [
|
||||
"yard",
|
||||
"yards",
|
||||
"yard",
|
||||
"yd"
|
||||
],
|
||||
"UnitType": "length",
|
||||
"Modifier": 0.9144
|
||||
},
|
||||
{
|
||||
"Triggers": [
|
||||
"cubic foot",
|
||||
"cubic feet",
|
||||
"cubic foot",
|
||||
"ft3"
|
||||
],
|
||||
"UnitType": "volume",
|
||||
"Modifier": 0.02831685
|
||||
},
|
||||
{
|
||||
"Triggers": [
|
||||
"cubic inch",
|
||||
"cubic inches",
|
||||
"cubic inch",
|
||||
"in3"
|
||||
],
|
||||
"UnitType": "volume",
|
||||
"Modifier": 0.00001638706
|
||||
},
|
||||
{
|
||||
"Triggers": [
|
||||
"cubic mile",
|
||||
"cubic miles",
|
||||
"cubic mile",
|
||||
"mi3"
|
||||
],
|
||||
"UnitType": "volume",
|
||||
"Modifier": 4168182000.0
|
||||
},
|
||||
{
|
||||
"Triggers": [
|
||||
"cubic yard",
|
||||
"cubic yards",
|
||||
"cubic yard",
|
||||
"yd3"
|
||||
],
|
||||
"UnitType": "volume",
|
||||
"Modifier": 0.7645549
|
||||
},
|
||||
{
|
||||
"Triggers": [
|
||||
"cup",
|
||||
"cups",
|
||||
"cup",
|
||||
"cup"
|
||||
],
|
||||
"UnitType": "volume",
|
||||
"Modifier": 0.0002365882
|
||||
},
|
||||
{
|
||||
"Triggers": [
|
||||
"imperial gallon",
|
||||
"Imperial gallons",
|
||||
"Imperial gallon",
|
||||
"gal"
|
||||
],
|
||||
"UnitType": "volume",
|
||||
"Modifier": 0.00454609
|
||||
},
|
||||
{
|
||||
"Triggers": [
|
||||
"us gallon",
|
||||
"US gallons",
|
||||
"US gallon",
|
||||
"gal"
|
||||
],
|
||||
"UnitType": "volume",
|
||||
"Modifier": 0.003785412
|
||||
},
|
||||
{
|
||||
"Triggers": [
|
||||
"milliliter",
|
||||
"milliliters",
|
||||
"milliliter",
|
||||
"mL"
|
||||
],
|
||||
"UnitType": "volume",
|
||||
"Modifier": 0.000001
|
||||
},
|
||||
{
|
||||
"Triggers": [
|
||||
"liter",
|
||||
"liters",
|
||||
"liter",
|
||||
"L"
|
||||
],
|
||||
"UnitType": "volume",
|
||||
"Modifier": 0.001
|
||||
},
|
||||
{
|
||||
"Triggers": [
|
||||
"imperial fluid ounce",
|
||||
"Imperial fluid ounces",
|
||||
"Imperial fluid ounce",
|
||||
"fl oz"
|
||||
],
|
||||
"UnitType": "volume",
|
||||
"Modifier": 0.00002841306
|
||||
},
|
||||
{
|
||||
"Triggers": [
|
||||
"us fluid ounce",
|
||||
"US fluid ounces",
|
||||
"US fluid ounce",
|
||||
"fl oz"
|
||||
],
|
||||
"UnitType": "volume",
|
||||
"Modifier": 0.00002957353
|
||||
},
|
||||
{
|
||||
"Triggers": [
|
||||
"imperial pint",
|
||||
"Imperial pints",
|
||||
"Imperial pint",
|
||||
"pt"
|
||||
],
|
||||
"UnitType": "volume",
|
||||
"Modifier": 0.00056826125
|
||||
},
|
||||
{
|
||||
"Triggers": [
|
||||
"us liquid pint",
|
||||
"US pints (liquid)",
|
||||
"US pint (liquid)",
|
||||
"pt"
|
||||
],
|
||||
"UnitType": "volume",
|
||||
"Modifier": 0.0004731765
|
||||
},
|
||||
{
|
||||
"Triggers": [
|
||||
"us dry pint",
|
||||
"US pints (dry)",
|
||||
"US pint (dry)",
|
||||
"pt"
|
||||
],
|
||||
"UnitType": "volume",
|
||||
"Modifier": 0.0005506105
|
||||
},
|
||||
{
|
||||
"Triggers": [
|
||||
"imperial quart",
|
||||
"Imperial quarts",
|
||||
"Imperial quart",
|
||||
"qt"
|
||||
],
|
||||
"UnitType": "volume",
|
||||
"Modifier": 0.00113652297
|
||||
},
|
||||
{
|
||||
"Triggers": [
|
||||
"us liquid quart",
|
||||
"US quarts (liquid)",
|
||||
"US quart (liquid)",
|
||||
"qt"
|
||||
],
|
||||
"UnitType": "volume",
|
||||
"Modifier": 0.0009463529
|
||||
},
|
||||
{
|
||||
"Triggers": [
|
||||
"us dry quart",
|
||||
"US quarts (dry)",
|
||||
"US quart (dry)",
|
||||
"qt"
|
||||
],
|
||||
"UnitType": "volume",
|
||||
"Modifier": 0.001101221
|
||||
},
|
||||
{
|
||||
"Triggers": [
|
||||
"tablespoon",
|
||||
"tablespoons",
|
||||
"tablespoon",
|
||||
"tbsp"
|
||||
],
|
||||
"UnitType": "volume",
|
||||
"Modifier": 0.00001478676
|
||||
},
|
||||
{
|
||||
"Triggers": [
|
||||
"teaspoon",
|
||||
"teaspoons",
|
||||
"teaspoon",
|
||||
"tspn"
|
||||
],
|
||||
"UnitType": "volume",
|
||||
"Modifier": 0.000004928922
|
||||
},
|
||||
{
|
||||
"Triggers": [
|
||||
"milligram",
|
||||
"milligrams",
|
||||
"milligram",
|
||||
"mg"
|
||||
],
|
||||
"UnitType": "weight",
|
||||
"Modifier": 0.000001
|
||||
},
|
||||
{
|
||||
"Triggers": [
|
||||
"gram",
|
||||
"grams",
|
||||
"gram",
|
||||
"g"
|
||||
],
|
||||
"UnitType": "weight",
|
||||
"Modifier": 0.001
|
||||
},
|
||||
{
|
||||
"Triggers": [
|
||||
"kilogram",
|
||||
"kilograms",
|
||||
"kilogram",
|
||||
"kg"
|
||||
],
|
||||
"UnitType": "weight",
|
||||
"Modifier": 1.0
|
||||
},
|
||||
{
|
||||
"Triggers": [
|
||||
"carat",
|
||||
"carats",
|
||||
"carat",
|
||||
"CD"
|
||||
],
|
||||
"UnitType": "weight",
|
||||
"Modifier": 0.00020
|
||||
},
|
||||
{
|
||||
"Triggers": [
|
||||
"grain",
|
||||
"grains",
|
||||
"grain",
|
||||
"gr"
|
||||
],
|
||||
"UnitType": "weight",
|
||||
"Modifier": 0.00006479891
|
||||
},
|
||||
{
|
||||
"Triggers": [
|
||||
"ounce",
|
||||
"ounces",
|
||||
"ounce",
|
||||
"oz"
|
||||
],
|
||||
"UnitType": "weight",
|
||||
"Modifier": 0.02834952
|
||||
},
|
||||
{
|
||||
"Triggers": [
|
||||
"pennyweight",
|
||||
"pennyweights",
|
||||
"pennyweight",
|
||||
"dwt"
|
||||
],
|
||||
"UnitType": "weight",
|
||||
"Modifier": 0.001555174
|
||||
},
|
||||
{
|
||||
"Triggers": [
|
||||
"pound",
|
||||
"pounds",
|
||||
"pound",
|
||||
"lb"
|
||||
],
|
||||
"UnitType": "weight",
|
||||
"Modifier": 0.4535924
|
||||
},
|
||||
{
|
||||
"Triggers": [
|
||||
"stone",
|
||||
"stones",
|
||||
"stone",
|
||||
"st"
|
||||
],
|
||||
"UnitType": "weight",
|
||||
"Modifier": 6.35029318
|
||||
},
|
||||
{
|
||||
"Triggers": [
|
||||
"slug",
|
||||
"slugs",
|
||||
"slug",
|
||||
"slug"
|
||||
],
|
||||
"UnitType": "weight",
|
||||
"Modifier": 14.59390
|
||||
},
|
||||
{
|
||||
"Triggers": [
|
||||
"metric ton",
|
||||
"metric tons",
|
||||
"metric ton",
|
||||
"t"
|
||||
],
|
||||
"UnitType": "weight",
|
||||
"Modifier": 1000.0
|
||||
},
|
||||
{
|
||||
"Triggers": [
|
||||
"long ton",
|
||||
"long tons",
|
||||
"long ton",
|
||||
"t"
|
||||
],
|
||||
"UnitType": "weight",
|
||||
"Modifier": 1016.047
|
||||
},
|
||||
{
|
||||
"Triggers": [
|
||||
"short ton",
|
||||
"short tons",
|
||||
"short ton",
|
||||
"t"
|
||||
],
|
||||
"UnitType": "weight",
|
||||
"Modifier": 907.1847
|
||||
},
|
||||
{
|
||||
"Triggers": [
|
||||
"acre",
|
||||
"acres",
|
||||
"acre",
|
||||
"acre"
|
||||
],
|
||||
"UnitType": "area",
|
||||
"Modifier": 4046.873
|
||||
},
|
||||
{
|
||||
"Triggers": [
|
||||
"are",
|
||||
"ares",
|
||||
"are",
|
||||
"a"
|
||||
],
|
||||
"UnitType": "area",
|
||||
"Modifier": 100.0
|
||||
},
|
||||
{
|
||||
"Triggers": [
|
||||
"hectare",
|
||||
"hectares",
|
||||
"hectare",
|
||||
"ha"
|
||||
],
|
||||
"UnitType": "area",
|
||||
"Modifier": 10000.0
|
||||
},
|
||||
{
|
||||
"Triggers": [
|
||||
"square foot",
|
||||
"square feet",
|
||||
"square foot",
|
||||
"ft2"
|
||||
],
|
||||
"UnitType": "area",
|
||||
"Modifier": 0.09290304
|
||||
},
|
||||
{
|
||||
"Triggers": [
|
||||
"square meter",
|
||||
"square meters",
|
||||
"square meter",
|
||||
"m2"
|
||||
],
|
||||
"UnitType": "area",
|
||||
"Modifier": 1.0
|
||||
},
|
||||
{
|
||||
"Triggers": [
|
||||
"square kilometer",
|
||||
"square kilometers",
|
||||
"square kilometer",
|
||||
"km2"
|
||||
],
|
||||
"UnitType": "area",
|
||||
"Modifier": 1000000.0
|
||||
},
|
||||
{
|
||||
"Triggers": [
|
||||
"square inch",
|
||||
"square inches",
|
||||
"square inch",
|
||||
"in2"
|
||||
],
|
||||
"UnitType": "area",
|
||||
"Modifier": 0.00064516
|
||||
},
|
||||
{
|
||||
"Triggers": [
|
||||
"square yard",
|
||||
"square yards",
|
||||
"square yard",
|
||||
"yd2"
|
||||
],
|
||||
"UnitType": "area",
|
||||
"Modifier": 0.8361274
|
||||
},
|
||||
{
|
||||
"Triggers": [
|
||||
"square mile",
|
||||
"square miles",
|
||||
"square mile",
|
||||
"mi2"
|
||||
],
|
||||
"UnitType": "area",
|
||||
"Modifier": 2589988.0
|
||||
},
|
||||
{
|
||||
"Triggers": [
|
||||
"aankadam",
|
||||
"aankadam",
|
||||
"aankadam",
|
||||
"aankadam"
|
||||
],
|
||||
"UnitType": "area",
|
||||
"Modifier": 6.69
|
||||
},
|
||||
{
|
||||
"Triggers": [
|
||||
"perch",
|
||||
"perches",
|
||||
"perch",
|
||||
"perch"
|
||||
],
|
||||
"UnitType": "area",
|
||||
"Modifier": 25.29
|
||||
},
|
||||
{
|
||||
"Triggers": [
|
||||
"cent",
|
||||
"cents",
|
||||
"cent",
|
||||
"cent"
|
||||
],
|
||||
"UnitType": "area",
|
||||
"Modifier": 40.47
|
||||
},
|
||||
{
|
||||
"Triggers": [
|
||||
"chatak",
|
||||
"chataks",
|
||||
"chatak",
|
||||
"chatak"
|
||||
],
|
||||
"UnitType": "area",
|
||||
"Modifier": 41.81
|
||||
},
|
||||
{
|
||||
"Triggers": [
|
||||
"kottah",
|
||||
"kottah (B)",
|
||||
"kottah (B)",
|
||||
"kottah (B)"
|
||||
],
|
||||
"UnitType": "area",
|
||||
"Modifier": 66.89
|
||||
},
|
||||
{
|
||||
"Triggers": [
|
||||
"guntha",
|
||||
"guntha",
|
||||
"guntha",
|
||||
"guntha"
|
||||
],
|
||||
"UnitType": "area",
|
||||
"Modifier": 101.17
|
||||
},
|
||||
{
|
||||
"Triggers": [
|
||||
"ground",
|
||||
"grounds",
|
||||
"ground",
|
||||
"ground"
|
||||
],
|
||||
"UnitType": "area",
|
||||
"Modifier": 222.97
|
||||
},
|
||||
{
|
||||
"Triggers": [
|
||||
"marla",
|
||||
"marla",
|
||||
"marla",
|
||||
"marla"
|
||||
],
|
||||
"UnitType": "area",
|
||||
"Modifier": 501.68
|
||||
},
|
||||
{
|
||||
"Triggers": [
|
||||
"rood",
|
||||
"roods",
|
||||
"rood",
|
||||
"rood"
|
||||
],
|
||||
"UnitType": "area",
|
||||
"Modifier": 1011.71
|
||||
},
|
||||
{
|
||||
"Triggers": [
|
||||
"bigha I",
|
||||
"bigha I",
|
||||
"bigha I",
|
||||
"bigha I"
|
||||
],
|
||||
"UnitType": "area",
|
||||
"Modifier": 1618.74
|
||||
},
|
||||
{
|
||||
"Triggers": [
|
||||
"bigha II",
|
||||
"bigha II",
|
||||
"bigha II",
|
||||
"bigha II"
|
||||
],
|
||||
"UnitType": "area",
|
||||
"Modifier": 2529.29
|
||||
},
|
||||
{
|
||||
"Triggers": [
|
||||
"kanal",
|
||||
"kanal",
|
||||
"kanal",
|
||||
"kanal"
|
||||
],
|
||||
"UnitType": "area",
|
||||
"Modifier": 10033.53
|
||||
},
|
||||
{
|
||||
"Triggers": [
|
||||
"biswa I",
|
||||
"biswa I",
|
||||
"biswa I",
|
||||
"biswa I"
|
||||
],
|
||||
"UnitType": "area",
|
||||
"Modifier": 32374.85
|
||||
},
|
||||
{
|
||||
"Triggers": [
|
||||
"biswa II",
|
||||
"biswa II",
|
||||
"biswa II",
|
||||
"biswa II"
|
||||
],
|
||||
"UnitType": "area",
|
||||
"Modifier": 50585.71
|
||||
},
|
||||
{
|
||||
"Triggers": [
|
||||
"pascal",
|
||||
"pascal",
|
||||
"pascal",
|
||||
"Pa"
|
||||
],
|
||||
"UnitType": "pressure",
|
||||
"Modifier": 1.0
|
||||
},
|
||||
{
|
||||
"Triggers": [
|
||||
"torr",
|
||||
"torr",
|
||||
"torr",
|
||||
"Torr"
|
||||
],
|
||||
"UnitType": "pressure",
|
||||
"Modifier": 133.3224
|
||||
},
|
||||
{
|
||||
"Triggers": [
|
||||
"bar",
|
||||
"bars",
|
||||
"bar",
|
||||
"bar"
|
||||
],
|
||||
"UnitType": "pressure",
|
||||
"Modifier": 100000.0
|
||||
},
|
||||
{
|
||||
"Triggers": [
|
||||
"millibar",
|
||||
"millibars",
|
||||
"millibar",
|
||||
"mb"
|
||||
],
|
||||
"UnitType": "pressure",
|
||||
"Modifier": 100.0
|
||||
},
|
||||
{
|
||||
"Triggers": [
|
||||
"psi",
|
||||
"psi",
|
||||
"psi",
|
||||
"lbf/in2"
|
||||
],
|
||||
"UnitType": "pressure",
|
||||
"Modifier": 6894.757
|
||||
},
|
||||
{
|
||||
"Triggers": [
|
||||
"day",
|
||||
"days",
|
||||
"day",
|
||||
"d"
|
||||
],
|
||||
"UnitType": "time",
|
||||
"Modifier": 86400.0
|
||||
},
|
||||
{
|
||||
"Triggers": [
|
||||
"hour",
|
||||
"hours",
|
||||
"hour",
|
||||
"h"
|
||||
],
|
||||
"UnitType": "time",
|
||||
"Modifier": 3600.0
|
||||
},
|
||||
{
|
||||
"Triggers": [
|
||||
"minute",
|
||||
"minutes",
|
||||
"minute",
|
||||
"min"
|
||||
],
|
||||
"UnitType": "time",
|
||||
"Modifier": 60.0
|
||||
},
|
||||
{
|
||||
"Triggers": [
|
||||
"year",
|
||||
"years",
|
||||
"year",
|
||||
"yr"
|
||||
],
|
||||
"UnitType": "time",
|
||||
"Modifier": 31536000.0
|
||||
},
|
||||
{
|
||||
"Triggers": [
|
||||
"K",
|
||||
"kelvin"
|
||||
],
|
||||
"UnitType": "temperature",
|
||||
"Modifier": 0.00
|
||||
},
|
||||
{
|
||||
"Triggers": [
|
||||
"F",
|
||||
"fahrenheit"
|
||||
],
|
||||
"UnitType": "temperature",
|
||||
"Modifier": 0.00
|
||||
},
|
||||
{
|
||||
"Triggers": [
|
||||
"C",
|
||||
"Celcius",
|
||||
"Centigrade"
|
||||
],
|
||||
"UnitType": "temperature",
|
||||
"Modifier": 0.00
|
||||
}
|
||||
]
|
1
src/Ellie/data/urero.json
Normal file
|
@ -0,0 +1 @@
|
|||
{}
|
302
src/Ellie/data/wowjokes.json
Normal file
|
@ -0,0 +1,302 @@
|
|||
[
|
||||
{
|
||||
"Question": "What do you call a gnome priest",
|
||||
"Answer": "A compact disc"
|
||||
},
|
||||
{
|
||||
"Question": "Why does the best raiding guild smell so bad?",
|
||||
"Answer": "because they never wipe"
|
||||
},
|
||||
{
|
||||
"Question": "Why are boomkins neither overpowered or underpowered?",
|
||||
"Answer": "Because they're Balanced"
|
||||
},
|
||||
{
|
||||
"Question": "Who is George of the Jungle's other brother?",
|
||||
"Answer": "Mark of the Wild."
|
||||
},
|
||||
{
|
||||
"Question": "What do you call a masturbating Tauren?",
|
||||
"Answer": "Beef Stroganoff."
|
||||
},
|
||||
{
|
||||
"Question": "What's a rogue's favourite drink?",
|
||||
"Answer": "Subtle Tea"
|
||||
},
|
||||
{
|
||||
"Question": "Classic: What to noobs and Rogues have in common?",
|
||||
"Answer": "They both pick locks!"
|
||||
},
|
||||
{
|
||||
"Question": "What did Gul'dan do when he tripped?",
|
||||
"Answer": "He fel"
|
||||
},
|
||||
{
|
||||
"Question": "Why didn't the warrior cross the road?",
|
||||
"Answer": "No Path Available."
|
||||
},
|
||||
{
|
||||
"Question": "What are the chances we have gotten the last content patch before a new expansion?",
|
||||
"Answer": "Slim Tanaan"
|
||||
},
|
||||
{
|
||||
"Question": "A trolls greeting is usually \"Eyy mon\" but what is a goblins?",
|
||||
"Answer": "\"\"Mon-eyy\"\n\n^^^^^I'm ^^^^^so ^^^^^sorry..."
|
||||
},
|
||||
{
|
||||
"Question": "What musician is from ICC?",
|
||||
"Answer": "What musician is from ICC?\n\nAn Arthas formally known as Prince."
|
||||
},
|
||||
{
|
||||
"Question": "How do you know if someone's been playing since Vanilla?",
|
||||
"Answer": "Don't worry, they'll tell you"
|
||||
},
|
||||
{
|
||||
"Question": "What happens when a demon forgets his sunscreen?",
|
||||
"Answer": "He ends up with a Burning Region"
|
||||
},
|
||||
{
|
||||
"Question": "Why are raid guilds recruiting rogues for the illidan fight?",
|
||||
"Answer": "Because they are the only ones that have the required [preparation](http://www.wowhead.com/spell=14185/preparation) "
|
||||
},
|
||||
{
|
||||
"Question": "How does Naxxramas fly?",
|
||||
"Answer": "with it's four wings"
|
||||
},
|
||||
{
|
||||
"Question": "Why is the Cenarion Circle neutral?",
|
||||
"Answer": "Circles have no sides."
|
||||
},
|
||||
{
|
||||
"Question": "Why are rogues the best bar tenders?",
|
||||
"Answer": "Because they always have cheap shots "
|
||||
},
|
||||
{
|
||||
"Question": "What does Gul'dan like on his hotdogs?",
|
||||
"Answer": "EVERYTHIIING"
|
||||
},
|
||||
{
|
||||
"Question": "Why did a Felhunter win the spelling competition?",
|
||||
"Answer": "Nobody else could Spell Lock."
|
||||
},
|
||||
{
|
||||
"Question": "What do you call it when Illidan teaches demon hunters in Legion?",
|
||||
"Answer": "a 'demon-stration\""
|
||||
},
|
||||
{
|
||||
"Question": "Why can't Paladins work out at Planet Fitness?",
|
||||
"Answer": "Because it's a Judgement-free zone. "
|
||||
},
|
||||
{
|
||||
"Question": "Why didn't the rogue like his dagger upgrade?",
|
||||
"Answer": "He wasn't a fan of knives."
|
||||
},
|
||||
{
|
||||
"Question": "What do you call a Gilnean church?",
|
||||
"Answer": "Worgenized religion"
|
||||
},
|
||||
{
|
||||
"Question": "Why were night elves chosen to be Azeroth's first astronauts?",
|
||||
"Answer": "Because they know the moon well."
|
||||
},
|
||||
{
|
||||
"Question": "Why are gnomes unable to be paladins?",
|
||||
"Answer": "Because they cannot reach the Light."
|
||||
},
|
||||
{
|
||||
"Question": "Did you hear about the resto druid who never plays guardian?",
|
||||
"Answer": "You could say he's all bark, no bite."
|
||||
},
|
||||
{
|
||||
"Question": "What's a dwarf rogue's favorite car?",
|
||||
"Answer": "Dodge Ram"
|
||||
},
|
||||
{
|
||||
"Question": "Why can you only wear 1 shoe in the Emerald nightmare?",
|
||||
"Answer": "Because they'll steal Ursoc."
|
||||
},
|
||||
{
|
||||
"Question": "Why is it impossible for a paladin and a rogue to make a baby?",
|
||||
"Answer": "Because paladins use protection and rogues do it from behind.\n\n\nTaken from Sodapoppin's stream on December 1st. "
|
||||
},
|
||||
{
|
||||
"Question": "Do you know how Illidan hurt his knee?",
|
||||
"Answer": "(this one came through in a GM ticket response today)\n\nDo you know how Illidan hurt his knee?\nIt's simple really...\nHe fel."
|
||||
},
|
||||
{
|
||||
"Question": "Icecrown Citadel was a pretty cool raid.",
|
||||
"Answer": "Even thinking about it gives me the chills."
|
||||
},
|
||||
{
|
||||
"Question": "Why do Blood Elves tan so quickly?",
|
||||
"Answer": "They use the Sun Well."
|
||||
},
|
||||
{
|
||||
"Question": "What is Bolvar doing lately?",
|
||||
"Answer": "Just chillin."
|
||||
},
|
||||
{
|
||||
"Question": "What do you call 4 Mogu rolling down a hill?",
|
||||
"Answer": "The Rolling Stones."
|
||||
},
|
||||
{
|
||||
"Question": "What is Taran Zhu's favorite cooking utensil?",
|
||||
"Answer": "The Shado-Pan"
|
||||
},
|
||||
{
|
||||
"Question": "What do you call a vapid celebrity female night elf?",
|
||||
"Answer": "Kim Darnassian"
|
||||
},
|
||||
{
|
||||
"Question": "Warlords of Draenor was an emotional expansion.",
|
||||
"Answer": "Even the raids were in tiers."
|
||||
},
|
||||
{
|
||||
"Question": "Why do hunters never get married?",
|
||||
"Answer": "Because they're always dis-engaging."
|
||||
},
|
||||
{
|
||||
"Question": "What do you call a kind warlock",
|
||||
"Answer": "Affection lock"
|
||||
},
|
||||
{
|
||||
"Question": "Which dragon has the dream job?",
|
||||
"Answer": "Ysera"
|
||||
},
|
||||
{
|
||||
"Question": "Healers are like artists",
|
||||
"Answer": "No one appreciates them until they are dead"
|
||||
},
|
||||
{
|
||||
"Question": "What did Illidan say when one of his group mates' gear was broken?",
|
||||
"Answer": "\"YOU ARE NOT REPAIRED!\""
|
||||
},
|
||||
{
|
||||
"Question": "Why do bars hate rogues?",
|
||||
"Answer": "Because they only want cheap shots."
|
||||
},
|
||||
{
|
||||
"Question": "What did the game tell the hunter when he dinged 40?",
|
||||
"Answer": "You've got mail."
|
||||
},
|
||||
{
|
||||
"Question": "What do you call a Blood Elf who eats his vegetables?",
|
||||
"Answer": "Kale'Thas"
|
||||
},
|
||||
{
|
||||
"Question": "Where do murlocs store their gold and treasure?",
|
||||
"Answer": "At the River Bank!"
|
||||
},
|
||||
{
|
||||
"Question": "Why did the undead smell bad?",
|
||||
"Answer": "He had no nose."
|
||||
},
|
||||
{
|
||||
"Question": "How did the Rogue one-shot Illidan?",
|
||||
"Answer": "By using Preparation."
|
||||
},
|
||||
{
|
||||
"Question": "What's the first thing Illidan sees when he wakes up?",
|
||||
"Answer": "NOTHING"
|
||||
},
|
||||
{
|
||||
"Question": "Why are all paladins so clean?",
|
||||
"Answer": "...Because they are always taking Bubble baths!"
|
||||
},
|
||||
{
|
||||
"Question": "did you hear about the monk serial killer",
|
||||
"Answer": "the murders were pre-meditated"
|
||||
},
|
||||
{
|
||||
"Question": "How much does a serving of Pandaren Cuisine weigh?",
|
||||
"Answer": "About wonton."
|
||||
},
|
||||
{
|
||||
"Question": "What injury did Gul'Dan get from playing Tennis.",
|
||||
"Answer": "Twisted Nethers."
|
||||
},
|
||||
{
|
||||
"Question": "A patch day joke...",
|
||||
"Answer": ""
|
||||
},
|
||||
{
|
||||
"Question": "Yo mamma so fat....",
|
||||
"Answer": "I tried to shadowstep her and I got a loading screen!"
|
||||
},
|
||||
{
|
||||
"Question": "What do you call it when the Argent Tournament catches on fire?",
|
||||
"Answer": "Burning Crusade."
|
||||
},
|
||||
{
|
||||
"Question": "Why can you never take a good photo of a hunter?",
|
||||
"Answer": "They are always out of focus"
|
||||
},
|
||||
{
|
||||
"Question": "How do impoverished Warriors get their weapons?",
|
||||
"Answer": "They Rend-to-own."
|
||||
},
|
||||
{
|
||||
"Question": "What is Arthas' favorite camping snack?",
|
||||
"Answer": "Frostsmores"
|
||||
},
|
||||
{
|
||||
"Question": "Why are warlocks faster after drinking vodka?",
|
||||
"Answer": "Because it gives them a Burning Rush!"
|
||||
},
|
||||
{
|
||||
"Question": "How did the druid catch a fish?",
|
||||
"Answer": "With his bear hands"
|
||||
},
|
||||
{
|
||||
"Question": "I really want the new Grove Warden moose mount...",
|
||||
"Answer": "...you could say, I consider it a moost-have."
|
||||
},
|
||||
{
|
||||
"Question": "Heard about the time Millhouse Manastorm went to Blackrock Foundry to visit Oregorger?",
|
||||
"Answer": "Me neither, but I've been assured there will be gnome ore puns."
|
||||
},
|
||||
{
|
||||
"Question": "So my new maid is a rogue...",
|
||||
"Answer": "... And she keeps on using [Vanish](http://www.brockaghltd.com/wp/wp-content/uploads/2014/11/31900_4.1405683094.jpg) even when I told her I prefer [Resolve](http://ecx.images-amazon.com/images/I/81a1jTSQzbL._SY355_.jpg). I'm so fed up with her!"
|
||||
},
|
||||
{
|
||||
"Question": "What do fire elementals eat for breakfast?",
|
||||
"Answer": "Ragnar-Os"
|
||||
},
|
||||
{
|
||||
"Question": "Why do mages share cane's?",
|
||||
"Answer": "Because it's not his cane, it's R Cane!"
|
||||
},
|
||||
{
|
||||
"Question": "Why do sneaky rogues prefer leather armor?",
|
||||
"Answer": "because it's made of hide"
|
||||
},
|
||||
{
|
||||
"Question": "What's it called when an animal spirit crashes your UI?",
|
||||
"Answer": "A LOA error."
|
||||
},
|
||||
{
|
||||
"Question": "Man the 90s take so long",
|
||||
"Answer": ""
|
||||
},
|
||||
{
|
||||
"Question": "What is Shadow-Lord Iskar's problem?",
|
||||
"Answer": "Every time we get to him in Hellfire Citadel, he always seems to be in a Fowl mood."
|
||||
},
|
||||
{
|
||||
"Question": "Why are hunters bad at photography?",
|
||||
"Answer": "They have no focus."
|
||||
},
|
||||
{
|
||||
"Question": "Why are paladins good at photography?",
|
||||
"Answer": "They use the Light"
|
||||
},
|
||||
{
|
||||
"Question": "How did the paladins get clean?",
|
||||
"Answer": "They had a bubble bath!"
|
||||
},
|
||||
{
|
||||
"Question": "You need to be careful of the trees in this game.",
|
||||
"Answer": "Some of them are shady."
|
||||
}
|
||||
]
|
58
src/Ellie/data/xp.yml
Normal file
|
@ -0,0 +1,58 @@
|
|||
# DO NOT CHANGE
|
||||
version: 6
|
||||
# How much XP will the users receive per message
|
||||
xpPerMessage: 3
|
||||
# How often can the users receive XP in minutes
|
||||
messageXpCooldown: 5
|
||||
# Amount of xp users gain from posting an image
|
||||
xpFromImage: 0
|
||||
# Average amount of xp earned per minute in VC
|
||||
voiceXpPerMinute: 0
|
||||
# The maximum amount of minutes the bot will keep track of a user in a voice channel
|
||||
voiceMaxMinutes: 720
|
||||
# The amount of currency users will receive for each point of global xp that they earn
|
||||
currencyPerXp: 0
|
||||
# Xp Shop config
|
||||
shop:
|
||||
# Whether the xp shop is enabled
|
||||
# True -> Users can access the xp shop using .xpshop command
|
||||
# False -> Users can't access the xp shop
|
||||
isEnabled: false
|
||||
# Which patron tier do users need in order to use the .xpshop bgs command
|
||||
# Leave at 'None' if patron system is disabled or you don't want any restrictions
|
||||
bgsTierRequirement: None
|
||||
# Which patron tier do users need in order to use the .xpshop frames command
|
||||
# Leave at 'None' if patron system is disabled or you don't want any restrictions
|
||||
framesTierRequirement: None
|
||||
# Frames available for sale. Keys are unique IDs.
|
||||
# Do not change keys as they are not publicly visible. Only change properties (name, price, id)
|
||||
# Removing a key which previously existed means that all previous purchases will also be unusable.
|
||||
# To remove an item from the shop, but keep previous purchases, set the price to -1
|
||||
frames:
|
||||
default:
|
||||
# Visible name of the item
|
||||
name: No frame
|
||||
# Price of the item. Set to -1 if you no longer want to sell the item but want the users to be able to keep their old purchase
|
||||
price: 0
|
||||
# Direct url to the .png image which will be applied to the user's XP card
|
||||
url: ''
|
||||
# Optional preview url which will show instead of the real URL in the shop
|
||||
preview:
|
||||
# Optional description of the item
|
||||
desc:
|
||||
# Backgrounds available for sale. Keys are unique IDs.
|
||||
# Do not change keys as they are not publicly visible. Only change properties (name, price, id)
|
||||
# Removing a key which previously existed means that all previous purchases will also be unusable.
|
||||
# To remove an item from the shop, but keep previous purchases, set the price to -1
|
||||
bgs:
|
||||
default:
|
||||
# Visible name of the item
|
||||
name: Default Background
|
||||
# Price of the item. Set to -1 if you no longer want to sell the item but want the users to be able to keep their old purchase
|
||||
price: 0
|
||||
# Direct url to the .png image which will be applied to the user's XP card
|
||||
url: ''
|
||||
# Optional preview url which will show instead of the real URL in the shop
|
||||
preview:
|
||||
# Optional description of the item
|
||||
desc:
|
145
src/Ellie/data/xp_template.json
Normal file
|
@ -0,0 +1,145 @@
|
|||
{
|
||||
"Version": 1,
|
||||
"output_size": {
|
||||
"X": 800,
|
||||
"Y": 392
|
||||
},
|
||||
"User": {
|
||||
"Name": {
|
||||
"Color": "ffffffff",
|
||||
"Show": true,
|
||||
"FontSize": 50,
|
||||
"Pos": {
|
||||
"X": 105,
|
||||
"Y": 25
|
||||
}
|
||||
},
|
||||
"Icon": {
|
||||
"Show": true,
|
||||
"Pos": {
|
||||
"X": 14,
|
||||
"Y": 14
|
||||
},
|
||||
"Size": {
|
||||
"X": 72,
|
||||
"Y": 71
|
||||
}
|
||||
},
|
||||
"GlobalLevel": {
|
||||
"Color": "ffffffff",
|
||||
"Show": true,
|
||||
"FontSize": 45,
|
||||
"Pos": {
|
||||
"X": 47,
|
||||
"Y": 160
|
||||
}
|
||||
},
|
||||
"GuildLevel": {
|
||||
"Color": "ffffffff",
|
||||
"Show": true,
|
||||
"FontSize": 45,
|
||||
"Pos": {
|
||||
"X": 47,
|
||||
"Y": 308
|
||||
}
|
||||
},
|
||||
"GlobalRank": {
|
||||
"Color": "ffffffff",
|
||||
"Show": true,
|
||||
"FontSize": 30,
|
||||
"Pos": {
|
||||
"X": 148,
|
||||
"Y": 179
|
||||
}
|
||||
},
|
||||
"GuildRank": {
|
||||
"Color": "ffffffff",
|
||||
"Show": true,
|
||||
"FontSize": 30,
|
||||
"Pos": {
|
||||
"X": 148,
|
||||
"Y": 326
|
||||
}
|
||||
},
|
||||
"Xp": {
|
||||
"Bar": {
|
||||
"Show": true,
|
||||
"Global": {
|
||||
"Color": "00000095",
|
||||
"PointA": {
|
||||
"X": 321,
|
||||
"Y": 104
|
||||
},
|
||||
"PointB": {
|
||||
"X": 286,
|
||||
"Y": 235
|
||||
},
|
||||
"Length": 450,
|
||||
"Direction": 3
|
||||
},
|
||||
"Guild": {
|
||||
"Color": "00000095",
|
||||
"PointA": {
|
||||
"X": 282,
|
||||
"Y": 248
|
||||
},
|
||||
"PointB": {
|
||||
"X": 247,
|
||||
"Y": 379
|
||||
},
|
||||
"Length": 450,
|
||||
"Direction": 3
|
||||
}
|
||||
},
|
||||
"Global": {
|
||||
"Color": "ffffffff",
|
||||
"Show": true,
|
||||
"FontSize": 50,
|
||||
"Pos": {
|
||||
"X": 528,
|
||||
"Y": 170
|
||||
}
|
||||
},
|
||||
"Guild": {
|
||||
"Color": "ffffffff",
|
||||
"Show": true,
|
||||
"FontSize": 50,
|
||||
"Pos": {
|
||||
"X": 490,
|
||||
"Y": 313
|
||||
}
|
||||
},
|
||||
"Awarded": {
|
||||
"Color": "ffffffff",
|
||||
"Show": true,
|
||||
"FontSize": 25,
|
||||
"Pos": {
|
||||
"X": 450,
|
||||
"Y": 345
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"Club": {
|
||||
"Icon": {
|
||||
"Show": true,
|
||||
"Pos": {
|
||||
"X": 722,
|
||||
"Y": 25
|
||||
},
|
||||
"Size": {
|
||||
"X": 45,
|
||||
"Y": 45
|
||||
}
|
||||
},
|
||||
"Name": {
|
||||
"Color": "ffffffff",
|
||||
"Show": true,
|
||||
"FontSize": 35,
|
||||
"Pos": {
|
||||
"X": 650,
|
||||
"Y": 55
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
170
src/Ellie/data/yomama.txt
Normal file
|
@ -0,0 +1,170 @@
|
|||
Yo mama is so fat that her bellybutton gets home 15 minutes before she does.
|
||||
Yo mama is so fat that when she was diagnosed with a flesh-eating disease, the doctor gave her ten years to live.
|
||||
Yo mama is so fat that the National Weather Service names each one of her farts.
|
||||
Yo mama is so fat that when she wears a yellow raincoat, people yell "taxi!"
|
||||
Yo mama is so fat and dumb that the only reason she opened her email was because she heard it contained spam.
|
||||
Yo mama is so fat she threw on a sheet for Halloween and went as Antarctica.
|
||||
Yo mama is so fat that she looked up cheat codes for Wii Fit
|
||||
Yo mama is so fat that the only exercise she gets is when she chases the ice cream truck.
|
||||
Yo mama is so fat that she sat on a dollar and squeezed a booger out George Washington's nose.
|
||||
Yo mama is so fat that when she gets in an elevator, it has to go down.
|
||||
Yo mama is so fat that when her beeper goes off, people think she's backing up.
|
||||
Yo mama is so fat that she has to iron her pants on the driveway.
|
||||
Yo mama is so fat that she left the house in high heels and came back wearing flip flops.
|
||||
Yo mama is so fat that people jog around her for exercise.
|
||||
Yo mama is so fat that she was floating in the ocean and Spain claimed her for the New World.
|
||||
Yo mama is so fat that when she walked in front of the TV, I missed 3 seasons of Breaking Bad.
|
||||
Yo mama is so fat that you have to grease the door frame and hold a twinkie on the other side just to get her through!
|
||||
Yo mama is so fat that that when she sits on the beach, Greenpeace shows up and tries to tow her back into the ocean...
|
||||
Yo mama is so fat that when she bungee jumps, she brings down the bridge too.
|
||||
Yo mama is so fat that when she talks to herself, it's a long distance call.
|
||||
Yo mama is so fat that the last time she saw 90210, it was on a scale.
|
||||
Yo mama is so fat that light bends around her.
|
||||
Yo mama is so fat that I took a picture of her last Christmas and it's still printing!
|
||||
Yo mama is so fat that when she sat on Wal-Mart, she lowered the prices.
|
||||
Yo mama is so fat that when she sat on an iphone, it turned into an ipad.
|
||||
Yo mama is so fat that even god can't lift her spirit.
|
||||
Yo mama is so fat that she gets group insurance.
|
||||
Yo mama is so fat that she was zoned for commercial development.
|
||||
Yo mama is so fat that she walked into the Gap and filled it.
|
||||
Yo mama is so fat that she comes at you from all directions.
|
||||
Yo mama is so fat that when she climbed onto a diving board at the beach, the lifeguard told your dad "sorry, you can't park here".
|
||||
Yo mama is so fat that her cereal bowl came with a lifeguard.
|
||||
Yo mama is so fat that she looks like shegs smuggling a Volkswagen.
|
||||
Yo mama is so fat that when she got her shoes shined, she had to take the guygs word for it.
|
||||
Yo mama is so fat that when she sings, itgs over for everybody.
|
||||
Yo mama is so fat that when she ran away, they had to use all four sides of the milk carton to display her picture.
|
||||
Yo mama is so fat that when she was growing up she didngt play with dolls, she played with midgets.
|
||||
Yo mama is so fat that she uses two buses for roller-blades.
|
||||
Yo mama's so fat she blew up the Deathstar.
|
||||
Yo mama is so fat that when she goes to a buffet, she gets the group rate.
|
||||
Yo mama is so fat that she has to put her belt on with a boomerang.
|
||||
Yo mama is so fat that she broke the Stairway to Heaven.
|
||||
Yo mama is so fat that she doesngt eat with a fork, she eats with a forklift.
|
||||
Yo mama is so fat that the last time the landlord saw her, he doubled the rent.
|
||||
Yo mama is so fat that Weight Watchers wongt look at her.
|
||||
Yo mama is so fat that the highway patrol made her wear a sign saying "Caution! Wide Turn".
|
||||
Yo mama is so fat that when she sits around the house, she SITS AROUND THE HOUSE!
|
||||
Yo mama is so fat that when she steps on a scale, it reads "one at a time, please".
|
||||
Yo mama is so fat that she fell in love and broke it.
|
||||
Yo mama is so fat that when she gets on the scale it says "We don't do livestock".
|
||||
Yo mama is so fat that when she tripped on 4th Ave, she landed on 12th.
|
||||
Yo mama is so fat that God couldn't light the Earth until she moved!
|
||||
Yo mama is so fat that even Bill Gates couldn't pay for her liposuction!
|
||||
Yo mama is so fat that she has to pull down her pants to get into her pockets.
|
||||
Yo mama is so fat that she was born on the fourth, fifth, and sixth of June.
|
||||
Yo mama is so fat that she could fall down and wouldngt even know it.
|
||||
Yo mama is so fat that the sign inside one restaurant says, “Maximum occupancy: 300, or Yo momma.”
|
||||
Yo mama is so fat that she puts mayonnaise on aspirin.
|
||||
Yo mama is so fat that she was born with a silver shovel in her mouth.
|
||||
Yo mama is so fat that when she hauls ass, she has to make two trips.
|
||||
Yo mama is so fat that she had to go to Sea World to get baptized.
|
||||
Yo mama is so fat that her bellybuttons got an echo.
|
||||
Yo mama is so fat that when she turns around people throw her a welcome back party.
|
||||
Yo mama is so fat that her belly button doesngt have lint, it has sweaters.
|
||||
Yo mama is so fat that a picture of her would fall off the wall.
|
||||
Yo mama is so fat that when she takes a shower, her feet dongt get wet.
|
||||
Yo mama is so fat that she puts on her lipstick with a paint-roller!
|
||||
Yo mama is so fat that she could sell shade.
|
||||
Yo mama is so fat that I ran around her twice and got lost.
|
||||
Yo mama is so fat that the shadow of her butt weighs 100 pounds.
|
||||
Yo mama is so fat that when shegs standing on the corner police drive by and yell, “Hey, break it up.”
|
||||
Yo mama is so fat that her blood type is Ragu.
|
||||
Yo mama is so fat that when she runs the fifty-yard dash she needs an overnight bag.
|
||||
Yo mama is so fat that she cangt even fit into an AOL chat room.
|
||||
Yo mama is so fat when she goes skydiving she doesn't use a parachute to land, she uses a twin-engine plane!
|
||||
Yo mama is so fat MTX audio's subwoofers couldn't rattle her bones!
|
||||
Yo mama is so fat her headphones are a pair of PA speakers connected to a car amplifier.
|
||||
Yo mama is so fat that she doesngt have a tailor, she has a contractor.
|
||||
Yo mama is so fat that eating contests have banned her because she is unfair competition.
|
||||
Yo mama is so fat that she measures 36-24-36, and the other arm is just as big.
|
||||
Yo mama is so fat that she gets her toenails painted at Luckygs Auto Body.
|
||||
Yo mama is so fat that when she goes to an amusement park, people try to ride HER!
|
||||
Yo mama is so fat that when she jumps up in the air she gets stuck!
|
||||
Yo mama is so fat that she has more Chins than a Chinese phone book!
|
||||
Yo mama is so fat that she influences the tides.
|
||||
Yo mama is so fat that when she plays hopscotch, she goes "New York, L.A., Chicago..."
|
||||
Yo mama is so fat that NASA has to orbit a satellite around her!
|
||||
Yo mama is so fat that when she sits on my face I can't hear the stereo.
|
||||
Yo mama is so fat that they have to grease the bath tub to get her out!
|
||||
Yo mama is so fat that she's on both sides of the family!
|
||||
Yo mama is so fat that at the zoo, the elephants throw HER peanuts.
|
||||
Yo mama is so fat you have to roll over twice to get off her.
|
||||
Yo mama is so fat that she sets off car alarms when she runs.
|
||||
Yo mama is so fat that she cant reach into her back pocket.
|
||||
Yo mama is so fat that she has her own gravity field.
|
||||
Yo mama is so fat that she stepped on a rainbow and made Skittles.
|
||||
Yo mama is so fat that the only pictures you have of her were taken by satellite cameras.
|
||||
Yo mama is so fat that when she wears a "Malcolm X" T-shirt, helicopters try to land on her back!
|
||||
Yo mama is so fat that it took Usain Bolt 3 years to run around her.
|
||||
Yo mama so fat that she sweats more than a dog in a chinese restaurant.
|
||||
Yo mama so fat, that went she stepped in the water, Thailand had to declare another tsunami warning.
|
||||
Yo mama is so fat that that she cant tie her own shoes.
|
||||
Yo mama is so fat that when she lays on the beach, people run around yelling Free Willy.
|
||||
Yo mama is so fat that she uses redwoods to pick her teeth
|
||||
Yo mama is so fat that she cut her leg and gravy poured out
|
||||
Yo mama is so fat that she was in the Macygs Thanksgiving Day Parade... wearing ropes.
|
||||
Yo mama is so fat that she went on a light diet. As soon as itgs light she starts eating.
|
||||
Yo mama is so fat that shegs half Italian, half Irish, and half American.
|
||||
Yo mama is so fat that her waist size is the Equator.
|
||||
Yo mama is so fat that she cangt even jump to a conclusion.
|
||||
Yo mama is so fat that she uses a mattress for a tampon.
|
||||
Yo mama is so fat that when she got hit by a bus, she said, "Who threw that rock at me?"
|
||||
Yo mama is so fat that we went to the drive-in and didn't have to pay for her because we dressed her up as a Toyota.
|
||||
Yo mama is so fat that when she was born, she gave the hospital stretch marks.
|
||||
Yo mama is so fat that she was cut from the cast of E.T., because she caused an eclipse when she rode the bike across the moon.
|
||||
Yo mama is so fat that when you get on top of her your ears pop.
|
||||
Yo mama is so fat that she got hit by a car and had to go to the hospital to have it removed.
|
||||
Yo mama is so fat that she eats "Wheat Thicks".
|
||||
Yo mama is so fat that we're in her right now!
|
||||
Yo mama is so fat that she went to the movie theatre and sat next to everyone.
|
||||
Yo mama is so fat that she has been declared a natural habitat for condors.
|
||||
Yo mama is so fat that when she wants to shake someones hand, she has to give directions!
|
||||
Yo mama is so fat that even Dora can't explore her!
|
||||
Yo mama is so fat that when she gets on the scale it says "to be continued".
|
||||
Yo mama is so fat that when she goes to a resturant, she looks at the menu and says "okay!"
|
||||
Yo mama is so fat that even Chuck Norris couldn't run around her.
|
||||
Yo mama is so fat that her neck looks like a dozen hot dogs!
|
||||
Yo mama is so fat that when she bungee jumps she goes straight to hell!
|
||||
Yo mama is so fat that she's got her own area code!
|
||||
Yo mama is so fat that she looks like she's smuggling a Volkswagon!
|
||||
Yo mama is so fat that she has to buy three airline tickets.
|
||||
Yo mama is so fat that whenever she goes to the beach the tide comes in!
|
||||
Yo mama is so fat that she's got Amtrak written on her leg.
|
||||
Yo mama is so fat that her legs are like spoiled milk - white & chunky!
|
||||
Yo mama is so fat that I had to take a train and two buses just to get on the her good side!
|
||||
Yo mama is so fat that she wakes up in sections!
|
||||
Yo mama so fat, all she wants for Christmas is to see her feet.
|
||||
Yo mama is so fat that when she lies on the beach no one else gets any sun!
|
||||
Yo mama is so fat that that her senior pictures had to be taken from a helicopter!
|
||||
Yo mama is so fat that everytime she walks in high heels, she strikes oil!
|
||||
Yo mama is so fat that she fell and created the Grand Canyon!
|
||||
Yo mama is so fat that her butt drags on the ground and kids yell - "there goes santa claus with his bag of toys!"
|
||||
Yo mama is so fat that even her clothes have stretch marks!
|
||||
Yo mama is so fat that she has to use a VCR as a beeper!
|
||||
Yo mama is so fat that when she asked for a waterbed, they put a blanket over the ocean!
|
||||
Yo mama is so fat that she got hit by a parked car!
|
||||
Yo mama is so fat that they use the elastic in her underwear for bungee jumping.
|
||||
Yo mama is so fat that when we were playing Call of Duty, I got a 20 kill streak for killing her.
|
||||
Yo mama is so fat that Dracula got Type 2 Diabetes after biting her neck.
|
||||
Yo mama is so fat that when she visited Toronto's City Hall, she was arrested for attempting to smuggle 500 lbs of crack into Mayor Rob Ford's office.
|
||||
Yo mama is so fat that when she fell over she rocked herself asleep trying to get up again.
|
||||
Yo mama is so fat that that when I tried to drive around her I ran out of gas.
|
||||
Yo mama is so fat that when she went to church and sat on a bible, Jesus came out and said "LET MY PEOPLE GO!"
|
||||
Yo mama is so fat that when she dances at a concert the whole band skips.
|
||||
Yo mama is so fat that she stands in two time zones.
|
||||
Yo mama is so fat that she went to the fair and the kids thought she was a bouncy castle.
|
||||
Yo mama is so fat that when she goes to an all you can eat buffet, they have to install speed bumps.
|
||||
Yo mama is so fat that the camera TAKES AWAY 10 lbs from her appearance.
|
||||
Yo mama is so fat that her sedan can fit 5 people... or just yo mama with the front seats removed.
|
||||
Yo mama is so fat that when she went to seaworld the whales started singing "We Are Family".
|
||||
Yo mama is so fat that she fell out of both sides of her bed.
|
||||
Yo mama is so fat that the stripes on her pajamas never end.
|
||||
Yo mama is so fat, Al Gore accuses her of global warning everytime she farts!
|
||||
Yo mama is so fat that she's got every caterer in the city on speed dial!
|
||||
Yo mama's so fat that when she goes on a scale, it shows her own phone number.
|
||||
Yo mama's so fat that she doesn't need the internet - she's worldwide.
|
||||
Yo mama's so fat that when she goes on a scale, it reads "lose some weight".
|
||||
Yo mama's so fat that she doesn't get dreams, she gets movies!
|
||||
Yo mama's so fat that when she walks, she changes the earth's rotation!
|
||||
Yo mama is so fat that she uses the entire country of Mexico as her tanning bed.
|