import { BadWordsDictionary } from 'badWords';

const germanBadWords: BadWordsDictionary = {
  "arschloch": 1,
  "scheiße": 1,
  "wichser": 1,
  "fick": 1,
  "hure": 1,
  "miststück": 1,
  "schlampe": 1,
  "verdammt": 1,
  "drecksau": 1,
  "fotze": 1,
  "idiot": 1,
  "schwein": 1,
  "dummkopf": 1,
  "arsch": 1,
  "kotzbrocken": 1,
  "hurenbock": 1,
  "luder": 1,
  "penner": 1,
  "trottel": 1,
  "blödmann": 1
};

export default germanBadWords;
